blob: bc6d79b00c4e63fdb4cd29360c0e04e3b6326fb5 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003 * include/linux/eventpoll.h ( Efficient event polling implementation )
Davide Libenzi3419b232006-06-25 05:48:14 -07004 * Copyright (C) 2001,...,2006 Davide Libenzi
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Davide Libenzi <davidel@xmailserver.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#ifndef _LINUX_EVENTPOLL_H
9#define _LINUX_EVENTPOLL_H
10
David Howells607ca462012-10-13 10:46:48 +010011#include <uapi/linux/eventpoll.h>
Cyrill Gorcunov0791e362017-07-12 14:34:28 -070012#include <uapi/linux/kcmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15/* Forward declarations to avoid compiler errors */
16struct file;
17
18
19#ifdef CONFIG_EPOLL
20
Cyrill Gorcunov92ef6da2017-07-12 14:34:31 -070021#ifdef CONFIG_CHECKPOINT_RESTORE
Cyrill Gorcunov0791e362017-07-12 14:34:28 -070022struct file *get_epoll_tfile_raw_ptr(struct file *file, int tfd, unsigned long toff);
Cyrill Gorcunov92ef6da2017-07-12 14:34:31 -070023#endif
Cyrill Gorcunov0791e362017-07-12 14:34:28 -070024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025/* Used to initialize the epoll bits inside the "struct file" */
Benjamin LaHaise5a6b7952006-03-23 03:01:03 -080026static inline void eventpoll_init_file(struct file *file)
27{
28 INIT_LIST_HEAD(&file->f_ep_links);
Jason Baron28d82dc2012-01-12 17:17:43 -080029 INIT_LIST_HEAD(&file->f_tfile_llink);
Benjamin LaHaise5a6b7952006-03-23 03:01:03 -080030}
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33/* Used to release the epoll bits inside the "struct file" */
34void 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 */
42static 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 Torvalds1da177e2005-04-16 15:20:36 -070064#else
65
66static inline void eventpoll_init_file(struct file *file) {}
67static inline void eventpoll_release(struct file *file) {}
68
69#endif
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#endif /* #ifndef _LINUX_EVENTPOLL_H */