Release 4.7 include/linux/poll.h
#ifndef _LINUX_POLL_H
#define _LINUX_POLL_H
#include <linux/compiler.h>
#include <linux/ktime.h>
#include <linux/wait.h>
#include <linux/string.h>
#include <linux/fs.h>
#include <linux/sysctl.h>
#include <asm/uaccess.h>
#include <uapi/linux/poll.h>
extern struct ctl_table epoll_table[]; /* for sysctl */
/* ~832 bytes of stack space used max in sys_select/sys_poll before allocating
additional memory. */
#define MAX_STACK_ALLOC 832
#define FRONTEND_STACK_ALLOC 256
#define SELECT_STACK_ALLOC FRONTEND_STACK_ALLOC
#define POLL_STACK_ALLOC FRONTEND_STACK_ALLOC
#define WQUEUES_STACK_ALLOC (MAX_STACK_ALLOC - FRONTEND_STACK_ALLOC)
#define N_INLINE_POLL_ENTRIES (WQUEUES_STACK_ALLOC / sizeof(struct poll_table_entry))
#define DEFAULT_POLLMASK (POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM)
struct poll_table_struct;
/*
* structures and helpers for f_op->poll implementations
*/
typedef void (*poll_queue_proc)(struct file *, wait_queue_head_t *, struct poll_table_struct *);
/*
* Do not touch the structure directly, use the access functions
* poll_does_not_wait() and poll_requested_events() instead.
*/
typedef struct poll_table_struct {
poll_queue_proc _qproc;
unsigned long _key;
}
poll_table;
static inline void poll_wait(struct file * filp, wait_queue_head_t * wait_address, poll_table *p)
{
if (p && p->_qproc && wait_address)
p->_qproc(filp, wait_address, p);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
pre-git | pre-git | 33 | 80.49% | 5 | 62.50% |
hans verkuil | hans verkuil | 5 | 12.20% | 1 | 12.50% |
davide libenzi | davide libenzi | 2 | 4.88% | 1 | 12.50% |
linus torvalds | linus torvalds | 1 | 2.44% | 1 | 12.50% |
| Total | 41 | 100.00% | 8 | 100.00% |
/*
* Return true if it is guaranteed that poll will not wait. This is the case
* if the poll() of another file descriptor in the set got an event, so there
* is no need for waiting.
*/
static inline bool poll_does_not_wait(const poll_table *p)
{
return p == NULL || p->_qproc == NULL;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
hans verkuil | hans verkuil | 23 | 100.00% | 1 | 100.00% |
| Total | 23 | 100.00% | 1 | 100.00% |
/*
* Return the set of events that the application wants to poll for.
* This is useful for drivers that need to know whether a DMA transfer has
* to be started implicitly on poll(). You typically only want to do that
* if the application is actually polling for POLLIN and/or POLLOUT.
*/
static inline unsigned long poll_requested_events(const poll_table *p)
{
return p ? p->_key : ~0UL;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
hans verkuil | hans verkuil | 23 | 100.00% | 1 | 100.00% |
| Total | 23 | 100.00% | 1 | 100.00% |
static inline void init_poll_funcptr(poll_table *pt, poll_queue_proc qproc)
{
pt->_qproc = qproc;
pt->_key = ~0UL; /* all events enabled */
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
davide libenzi | davide libenzi | 17 | 60.71% | 2 | 40.00% |
eric dumazet | eric dumazet | 7 | 25.00% | 1 | 20.00% |
hans verkuil | hans verkuil | 2 | 7.14% | 1 | 20.00% |
manfred spraul | manfred spraul | 2 | 7.14% | 1 | 20.00% |
| Total | 28 | 100.00% | 5 | 100.00% |
struct poll_table_entry {
struct file *filp;
unsigned long key;
wait_queue_t wait;
wait_queue_head_t *wait_address;
};
/*
* Structures and helpers for select/poll syscall
*/
struct poll_wqueues {
poll_table pt;
struct poll_table_page *table;
struct task_struct *polling_task;
int triggered;
int error;
int inline_index;
struct poll_table_entry inline_entries[N_INLINE_POLL_ENTRIES];
};
extern void poll_initwait(struct poll_wqueues *pwq);
extern void poll_freewait(struct poll_wqueues *pwq);
extern int poll_schedule_timeout(struct poll_wqueues *pwq, int state,
ktime_t *expires, unsigned long slack);
extern u64 select_estimate_accuracy(struct timespec64 *tv);
static inline int poll_schedule(struct poll_wqueues *pwq, int state)
{
return poll_schedule_timeout(pwq, state, NULL, 0);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
tejun heo | tejun heo | 27 | 100.00% | 1 | 100.00% |
| Total | 27 | 100.00% | 1 | 100.00% |
/*
* Scalable version of the fd_set.
*/
typedef struct {
unsigned long *in, *out, *ex;
unsigned long *res_in, *res_out, *res_ex;
}
fd_set_bits;
/*
* How many longwords for "nr" bits?
*/
#define FDS_BITPERLONG (8*sizeof(long))
#define FDS_LONGS(nr) (((nr)+FDS_BITPERLONG-1)/FDS_BITPERLONG)
#define FDS_BYTES(nr) (FDS_LONGS(nr)*sizeof(long))
/*
* We do a VERIFY_WRITE here even though we are only reading this time:
* we'll write to it eventually..
*
* Use "unsigned long" accesses to let user-mode fd_set's be long-aligned.
*/
static inline
int get_fd_set(unsigned long nr, void __user *ufdset, unsigned long *fdset)
{
nr = FDS_BYTES(nr);
if (ufdset)
return copy_from_user(fdset, ufdset, nr) ? -EFAULT : 0;
memset(fdset, 0, nr);
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
pre-git | pre-git | 53 | 89.83% | 3 | 60.00% |
jesper juhl | jesper juhl | 5 | 8.47% | 1 | 20.00% |
linus torvalds | linus torvalds | 1 | 1.69% | 1 | 20.00% |
| Total | 59 | 100.00% | 5 | 100.00% |
static inline unsigned long __must_check
set_fd_set(unsigned long nr, void __user *ufdset, unsigned long *fdset)
{
if (ufdset)
return __copy_to_user(ufdset, fdset, FDS_BYTES(nr));
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
pre-git | pre-git | 34 | 79.07% | 2 | 50.00% |
andrew morton | andrew morton | 8 | 18.60% | 1 | 25.00% |
linus torvalds | linus torvalds | 1 | 2.33% | 1 | 25.00% |
| Total | 43 | 100.00% | 4 | 100.00% |
static inline
void zero_fd_set(unsigned long nr, unsigned long *fdset)
{
memset(fdset, 0, FDS_BYTES(nr));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
pre-git | pre-git | 28 | 100.00% | 2 | 100.00% |
| Total | 28 | 100.00% | 2 | 100.00% |
#define MAX_INT64_SECONDS (((s64)(~((u64)0)>>1)/HZ)-1)
extern int do_select(int n, fd_set_bits *fds, struct timespec64 *end_time);
extern int do_sys_poll(struct pollfd __user * ufds, unsigned int nfds,
struct timespec64 *end_time);
extern int core_sys_select(int n, fd_set __user *inp, fd_set __user *outp,
fd_set __user *exp, struct timespec64 *end_time);
extern int poll_select_set_timeout(struct timespec64 *to, time64_t sec,
long nsec);
#endif /* _LINUX_POLL_H */
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
pre-git | pre-git | 240 | 38.59% | 12 | 31.58% |
hans verkuil | hans verkuil | 58 | 9.32% | 1 | 2.63% |
tejun heo | tejun heo | 56 | 9.00% | 1 | 2.63% |
andi kleen | andi kleen | 52 | 8.36% | 1 | 2.63% |
davide libenzi | davide libenzi | 51 | 8.20% | 3 | 7.89% |
al viro | al viro | 27 | 4.34% | 2 | 5.26% |
manfred spraul | manfred spraul | 26 | 4.18% | 1 | 2.63% |
david woodhouse | david woodhouse | 21 | 3.38% | 1 | 2.63% |
eric dumazet | eric dumazet | 14 | 2.25% | 1 | 2.63% |
thomas gleixner | thomas gleixner | 14 | 2.25% | 1 | 2.63% |
andrew morton | andrew morton | 11 | 1.77% | 1 | 2.63% |
dave young | dave young | 10 | 1.61% | 1 | 2.63% |
alexey dobriyan | alexey dobriyan | 8 | 1.29% | 2 | 5.26% |
shawn bohrer | shawn bohrer | 8 | 1.29% | 1 | 2.63% |
deepa dinamani | deepa dinamani | 6 | 0.96% | 1 | 2.63% |
arjan van de ven | arjan van de ven | 6 | 0.96% | 1 | 2.63% |
jesper juhl | jesper juhl | 5 | 0.80% | 1 | 2.63% |
linus torvalds | linus torvalds | 3 | 0.48% | 2 | 5.26% |
david howells | david howells | 3 | 0.48% | 1 | 2.63% |
namhyung kim | namhyung kim | 1 | 0.16% | 1 | 2.63% |
lucas de marchi | lucas de marchi | 1 | 0.16% | 1 | 2.63% |
john stultz | john stultz | 1 | 0.16% | 1 | 2.63% |
| Total | 622 | 100.00% | 38 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.