| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2 |  *  include/linux/eventpoll.h ( Efficient event polling implementation ) | 
| Davide Libenzi | 3419b23 | 2006-06-25 05:48:14 -0700 | [diff] [blame] | 3 |  *  Copyright (C) 2001,...,2006	 Davide Libenzi | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |  */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #ifndef _LINUX_EVENTPOLL_H | 
 | 14 | #define _LINUX_EVENTPOLL_H | 
 | 15 |  | 
| David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 16 | #include <uapi/linux/eventpoll.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 |  | 
 | 19 | /* Forward declarations to avoid compiler errors */ | 
 | 20 | struct file; | 
 | 21 |  | 
 | 22 |  | 
 | 23 | #ifdef CONFIG_EPOLL | 
 | 24 |  | 
 | 25 | /* Used to initialize the epoll bits inside the "struct file" */ | 
| Benjamin LaHaise | 5a6b795 | 2006-03-23 03:01:03 -0800 | [diff] [blame] | 26 | static inline void eventpoll_init_file(struct file *file) | 
 | 27 | { | 
 | 28 | 	INIT_LIST_HEAD(&file->f_ep_links); | 
| Jason Baron | 28d82dc | 2012-01-12 17:17:43 -0800 | [diff] [blame] | 29 | 	INIT_LIST_HEAD(&file->f_tfile_llink); | 
| Benjamin LaHaise | 5a6b795 | 2006-03-23 03:01:03 -0800 | [diff] [blame] | 30 | } | 
 | 31 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 |  | 
 | 33 | /* Used to release the epoll bits inside the "struct file" */ | 
 | 34 | void eventpoll_release_file(struct file *file); | 
 | 35 |  | 
 | 36 | /* | 
 | 37 |  * This is called from inside fs/file_table.c:__fput() to unlink files | 
 | 38 |  * from the eventpoll interface. We need to have this facility to cleanup | 
 | 39 |  * correctly files that are closed without being removed from the eventpoll | 
 | 40 |  * interface. | 
 | 41 |  */ | 
 | 42 | static inline void eventpoll_release(struct file *file) | 
 | 43 | { | 
 | 44 |  | 
 | 45 | 	/* | 
 | 46 | 	 * Fast check to avoid the get/release of the semaphore. Since | 
 | 47 | 	 * we're doing this outside the semaphore lock, it might return | 
 | 48 | 	 * false negatives, but we don't care. It'll help in 99.99% of cases | 
 | 49 | 	 * to avoid the semaphore lock. False positives simply cannot happen | 
 | 50 | 	 * because the file in on the way to be removed and nobody ( but | 
 | 51 | 	 * eventpoll ) has still a reference to this file. | 
 | 52 | 	 */ | 
 | 53 | 	if (likely(list_empty(&file->f_ep_links))) | 
 | 54 | 		return; | 
 | 55 |  | 
 | 56 | 	/* | 
 | 57 | 	 * The file is being closed while it is still linked to an epoll | 
 | 58 | 	 * descriptor. We need to handle this by correctly unlinking it | 
 | 59 | 	 * from its containers. | 
 | 60 | 	 */ | 
 | 61 | 	eventpoll_release_file(file); | 
 | 62 | } | 
 | 63 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | #else | 
 | 65 |  | 
 | 66 | static inline void eventpoll_init_file(struct file *file) {} | 
 | 67 | static inline void eventpoll_release(struct file *file) {} | 
 | 68 |  | 
 | 69 | #endif | 
 | 70 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | #endif /* #ifndef _LINUX_EVENTPOLL_H */ |