mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-22 14:41:27 +00:00
net: remove sock_poll_busy_loop
There is no point in hiding this logic in a helper. Also remove the useless events != 0 check and only busy loop once we know we actually have a poll method. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d8bbd13bee
commit
f641f13b99
2 changed files with 4 additions and 10 deletions
|
@ -1132,9 +1132,12 @@ static __poll_t sock_poll(struct file *file, poll_table *wait)
|
|||
struct socket *sock = file->private_data;
|
||||
__poll_t events = poll_requested_events(wait);
|
||||
|
||||
sock_poll_busy_loop(sock, events);
|
||||
if (!sock->ops->poll)
|
||||
return 0;
|
||||
|
||||
/* poll once if requested by the syscall */
|
||||
if (sk_can_busy_loop(sock->sk) && (events & POLL_BUSY_LOOP))
|
||||
sk_busy_loop(sock->sk, 1);
|
||||
return sock->ops->poll(file, sock, wait) | sock_poll_busy_flag(sock);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue