eventpoll.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * include/linux/eventpoll.h ( Efficient event polling implementation )
  3. * Copyright (C) 2001,...,2006 Davide Libenzi
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * Davide Libenzi <davidel@xmailserver.org>
  11. *
  12. */
  13. #ifndef _LINUX_EVENTPOLL_H
  14. #define _LINUX_EVENTPOLL_H
  15. #include <uapi/linux/eventpoll.h>
  16. /* Forward declarations to avoid compiler errors */
  17. struct file;
  18. #ifdef CONFIG_EPOLL
  19. /* Used to initialize the epoll bits inside the "struct file" */
  20. static inline void eventpoll_init_file(struct file *file)
  21. {
  22. INIT_LIST_HEAD(&file->f_ep_links);
  23. INIT_LIST_HEAD(&file->f_tfile_llink);
  24. }
  25. /* Used to release the epoll bits inside the "struct file" */
  26. void eventpoll_release_file(struct file *file);
  27. /*
  28. * This is called from inside fs/file_table.c:__fput() to unlink files
  29. * from the eventpoll interface. We need to have this facility to cleanup
  30. * correctly files that are closed without being removed from the eventpoll
  31. * interface.
  32. */
  33. static inline void eventpoll_release(struct file *file)
  34. {
  35. /*
  36. * Fast check to avoid the get/release of the semaphore. Since
  37. * we're doing this outside the semaphore lock, it might return
  38. * false negatives, but we don't care. It'll help in 99.99% of cases
  39. * to avoid the semaphore lock. False positives simply cannot happen
  40. * because the file in on the way to be removed and nobody ( but
  41. * eventpoll ) has still a reference to this file.
  42. */
  43. if (likely(list_empty(&file->f_ep_links)))
  44. return;
  45. /*
  46. * The file is being closed while it is still linked to an epoll
  47. * descriptor. We need to handle this by correctly unlinking it
  48. * from its containers.
  49. */
  50. eventpoll_release_file(file);
  51. }
  52. #else
  53. static inline void eventpoll_init_file(struct file *file) {}
  54. static inline void eventpoll_release(struct file *file) {}
  55. #endif
  56. #endif /* #ifndef _LINUX_EVENTPOLL_H */