Skip to content

Commit

Permalink
net: remove sock_poll_busy_loop
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Christoph Hellwig authored and David S. Miller committed Jul 30, 2018
1 parent d8bbd13 commit f641f13
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
9 changes: 0 additions & 9 deletions include/net/busy_poll.h
Original file line number Diff line number Diff line change
Expand Up @@ -121,15 +121,6 @@ static inline void sk_busy_loop(struct sock *sk, int nonblock)
#endif
}

static inline void sock_poll_busy_loop(struct socket *sock, __poll_t events)
{
if (sk_can_busy_loop(sock->sk) &&
events && (events & POLL_BUSY_LOOP)) {
/* once, only if requested by syscall */
sk_busy_loop(sock->sk, 1);
}
}

/* if this socket can poll_ll, tell the system call */
static inline __poll_t sock_poll_busy_flag(struct socket *sock)
{
Expand Down
5 changes: 4 additions & 1 deletion net/socket.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit f641f13

Please sign in to comment.