]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
net: remove sock_poll_busy_flag
authorChristoph Hellwig <hch@lst.de>
Mon, 30 Jul 2018 07:42:13 +0000 (09:42 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 30 Jul 2018 16:10:25 +0000 (09:10 -0700)
Fold it into the only caller to make the code simpler and easier to read.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/busy_poll.h
net/socket.c

index 85777e68f738a40f5d70bf32f39a54a6322cd796..ba61cdd09eaa811c8b4a529c47a9dde45909a143 100644 (file)
@@ -121,12 +121,6 @@ static inline void sk_busy_loop(struct sock *sk, int nonblock)
 #endif
 }
 
-/* if this socket can poll_ll, tell the system call */
-static inline __poll_t sock_poll_busy_flag(struct socket *sock)
-{
-       return sk_can_busy_loop(sock->sk) ? POLL_BUSY_LOOP : 0;
-}
-
 /* used in the NIC receive handler to mark the skb */
 static inline void skb_mark_napi_id(struct sk_buff *skb,
                                    struct napi_struct *napi)
index 674434127b3ad0edbadbc03ebf8976cf0538a345..5b7df6695f4f123ba6a7d2639a69f94ad3113bad 100644 (file)
@@ -1130,15 +1130,21 @@ EXPORT_SYMBOL(sock_create_lite);
 static __poll_t sock_poll(struct file *file, poll_table *wait)
 {
        struct socket *sock = file->private_data;
-       __poll_t events = poll_requested_events(wait);
+       __poll_t events = poll_requested_events(wait), flag = 0;
 
        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);
+       if (sk_can_busy_loop(sock->sk)) {
+               /* poll once if requested by the syscall */
+               if (events & POLL_BUSY_LOOP)
+                       sk_busy_loop(sock->sk, 1);
+
+               /* if this socket can poll_ll, tell the system call */
+               flag = POLL_BUSY_LOOP;
+       }
+
+       return sock->ops->poll(file, sock, wait) | flag;
 }
 
 static int sock_mmap(struct file *file, struct vm_area_struct *vma)