aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/net/sock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/sock.h b/include/net/sock.h
index 170353dd9570..092b0551e77f 100644
--- a/include/net/sock.h
+++ b/include/net/sock.h
@@ -604,7 +604,7 @@ static inline void __sk_add_backlog(struct sock *sk, struct sk_buff *skb)
604} 604}
605 605
606/* The per-socket spinlock must be held here. */ 606/* The per-socket spinlock must be held here. */
607static inline int sk_add_backlog(struct sock *sk, struct sk_buff *skb) 607static inline __must_check int sk_add_backlog(struct sock *sk, struct sk_buff *skb)
608{ 608{
609 if (sk->sk_backlog.len >= max(sk->sk_backlog.limit, sk->sk_rcvbuf << 1)) 609 if (sk->sk_backlog.len >= max(sk->sk_backlog.limit, sk->sk_rcvbuf << 1))
610 return -ENOBUFS; 610 return -ENOBUFS;