mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-26 00:55:26 +07:00
2d48d67fa8
select/poll busy-poll support. Split sysctl value into two separate ones, one for read and one for poll. updated Documentation/sysctl/net.txt Add a new poll flag POLL_LL. When this flag is set, sock_poll will call sk_poll_ll if possible. sock_poll sets this flag in its return value to indicate to select/poll when a socket that can busy poll is found. When poll/select have nothing to report, call the low-level sock_poll again until we are out of time or we find something. Once the system call finds something, it stops setting POLL_LL, so it can return the result to the user ASAP. Signed-off-by: Eliezer Tamir <eliezer.tamir@linux.intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
42 lines
789 B
C
42 lines
789 B
C
#ifndef __ASM_GENERIC_POLL_H
|
|
#define __ASM_GENERIC_POLL_H
|
|
|
|
/* These are specified by iBCS2 */
|
|
#define POLLIN 0x0001
|
|
#define POLLPRI 0x0002
|
|
#define POLLOUT 0x0004
|
|
#define POLLERR 0x0008
|
|
#define POLLHUP 0x0010
|
|
#define POLLNVAL 0x0020
|
|
|
|
/* The rest seem to be more-or-less nonstandard. Check them! */
|
|
#define POLLRDNORM 0x0040
|
|
#define POLLRDBAND 0x0080
|
|
#ifndef POLLWRNORM
|
|
#define POLLWRNORM 0x0100
|
|
#endif
|
|
#ifndef POLLWRBAND
|
|
#define POLLWRBAND 0x0200
|
|
#endif
|
|
#ifndef POLLMSG
|
|
#define POLLMSG 0x0400
|
|
#endif
|
|
#ifndef POLLREMOVE
|
|
#define POLLREMOVE 0x1000
|
|
#endif
|
|
#ifndef POLLRDHUP
|
|
#define POLLRDHUP 0x2000
|
|
#endif
|
|
|
|
#define POLLFREE 0x4000 /* currently only for epoll */
|
|
|
|
#define POLL_LL 0x8000
|
|
|
|
struct pollfd {
|
|
int fd;
|
|
short events;
|
|
short revents;
|
|
};
|
|
|
|
#endif /* __ASM_GENERIC_POLL_H */
|