mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
[NET]: Revert incorrect accept queue backlog changes.
This reverts two changes:8488df894d
248f06726e
A 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:
parent
187f5f84ef
commit
64a146513f
@ -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;
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -934,7 +934,7 @@ static long unix_wait_for_peer(struct sock *other, long timeo)
|
||||
|
||||
sched = !sock_flag(other, SOCK_DEAD) &&
|
||||
!(other->sk_shutdown & RCV_SHUTDOWN) &&
|
||||
(skb_queue_len(&other->sk_receive_queue) >=
|
||||
(skb_queue_len(&other->sk_receive_queue) >
|
||||
other->sk_max_ack_backlog);
|
||||
|
||||
unix_state_runlock(other);
|
||||
@ -1008,7 +1008,7 @@ restart:
|
||||
if (other->sk_state != TCP_LISTEN)
|
||||
goto out_unlock;
|
||||
|
||||
if (skb_queue_len(&other->sk_receive_queue) >=
|
||||
if (skb_queue_len(&other->sk_receive_queue) >
|
||||
other->sk_max_ack_backlog) {
|
||||
err = -EAGAIN;
|
||||
if (!timeo)
|
||||
@ -1381,7 +1381,7 @@ restart:
|
||||
}
|
||||
|
||||
if (unix_peer(other) != sk &&
|
||||
(skb_queue_len(&other->sk_receive_queue) >=
|
||||
(skb_queue_len(&other->sk_receive_queue) >
|
||||
other->sk_max_ack_backlog)) {
|
||||
if (!timeo) {
|
||||
err = -EAGAIN;
|
||||
|
Loading…
Reference in New Issue
Block a user