• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/

Lines Matching refs:epitem

136 struct epitem {
147 struct epitem *next;
198 * This is a single linked list that chains all the "struct epitem" that
202 struct epitem *ovflist;
207 /* List header used to link this structure to the "struct epitem" */
210 /* The "base" pointer is set to the container "struct epitem" */
226 struct epitem *epi;
237 /* Slab cache used to allocate "struct epitem" */
285 /* Get the "struct epitem" from a wait queue pointer */
286 static inline struct epitem * ep_item_from_wait(wait_queue_t *p)
291 /* Get the "struct epitem" from an epoll queue wrapper */
292 static inline struct epitem * ep_item_from_epqueue(poll_table *p)
370 static void ep_unregister_pollwait(struct eventpoll *ep, struct epitem *epi)
391 * Removes a "struct epitem" from the eventpoll RB tree and deallocates
394 static int ep_remove(struct eventpoll *ep, struct epitem *epi)
435 struct epitem *epi;
455 epi = rb_entry(rbp, struct epitem, rbn);
461 * Walks through the whole tree by freeing each "struct epitem". At this
467 epi = rb_entry(rbp, struct epitem, rbn);
526 struct epitem *epi;
542 epi = list_first_entry(lsthead, struct epitem, fllink);
581 static struct epitem *ep_find(struct eventpoll *ep, struct file *file, int fd)
585 struct epitem *epi, *epir = NULL;
590 epi = rb_entry(rbp, struct epitem, rbn);
617 struct epitem *epi = ep_item_from_wait(wait);
682 struct epitem *epi = ep_item_from_epqueue(pt);
698 static void ep_rbtree_insert(struct eventpoll *ep, struct epitem *epi)
702 struct epitem *epic;
706 epic = rb_entry(parent, struct epitem, rbn);
725 struct epitem *epi;
823 static int ep_modify(struct eventpoll *ep, struct epitem *epi, struct epoll_event *event)
879 struct epitem *epi, *nepi;
909 epi = list_first_entry(&txlist, struct epitem, rdllink);
1125 struct epitem *epi;
1324 /* Allocates slab cache used to allocate "struct epitem" items */
1325 epi_cache = kmem_cache_create("eventpoll_epi", sizeof(struct epitem),