diff options
-rw-r--r-- | include/net/sock.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/include/net/sock.h b/include/net/sock.h index e0498bd36004..ff13c4cc287a 100644 --- a/include/net/sock.h +++ b/include/net/sock.h | |||
@@ -461,16 +461,16 @@ static inline void sk_stream_free_skb(struct sock *sk, struct sk_buff *skb) | |||
461 | } | 461 | } |
462 | 462 | ||
463 | /* The per-socket spinlock must be held here. */ | 463 | /* The per-socket spinlock must be held here. */ |
464 | #define sk_add_backlog(__sk, __skb) \ | 464 | static inline void sk_add_backlog(struct sock *sk, struct sk_buff *skb) |
465 | do { if (!(__sk)->sk_backlog.tail) { \ | 465 | { |
466 | (__sk)->sk_backlog.head = \ | 466 | if (!sk->sk_backlog.tail) { |
467 | (__sk)->sk_backlog.tail = (__skb); \ | 467 | sk->sk_backlog.head = sk->sk_backlog.tail = skb; |
468 | } else { \ | 468 | } else { |
469 | ((__sk)->sk_backlog.tail)->next = (__skb); \ | 469 | sk->sk_backlog.tail->next = skb; |
470 | (__sk)->sk_backlog.tail = (__skb); \ | 470 | sk->sk_backlog.tail = skb; |
471 | } \ | 471 | } |
472 | (__skb)->next = NULL; \ | 472 | skb->next = NULL; |
473 | } while(0) | 473 | } |
474 | 474 | ||
475 | #define sk_wait_event(__sk, __timeo, __condition) \ | 475 | #define sk_wait_event(__sk, __timeo, __condition) \ |
476 | ({ int rc; \ | 476 | ({ int rc; \ |