[NET]: Revert incorrect accept queue backlog changes.
This reverts two changes:8488df894d248f06726eA backlog value of N really does mean allow "N + 1" connections to queue to a listening socket. This allows one to specify "0" as the backlog and still get 1 connection. Noticed by Gerrit Renker and Rick Jones. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -426,7 +426,7 @@ static inline void sk_acceptq_added(struct sock *sk)
|
||||
|
||||
static inline int sk_acceptq_is_full(struct sock *sk)
|
||||
{
|
||||
return sk->sk_ack_backlog >= sk->sk_max_ack_backlog;
|
||||
return sk->sk_ack_backlog > sk->sk_max_ack_backlog;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user