aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDavid S. Miller <davem@sunset.davemloft.net>2007-03-06 11:21:05 -0800
committerDavid S. Miller <davem@sunset.davemloft.net>2007-03-06 11:21:05 -0800
commit64a146513f8f12ba204b7bf5cb7e9505594ead42 (patch)
tree849f875501ac6f08cf309c5b13cf21ed687974e2 /include
parent[INET]: twcal_jiffie should be unsigned long, not int (diff)
downloadlinux-dev-64a146513f8f12ba204b7bf5cb7e9505594ead42.tar.xz
linux-dev-64a146513f8f12ba204b7bf5cb7e9505594ead42.zip
[NET]: Revert incorrect accept queue backlog changes.
This reverts two changes: 8488df894d05d6fa41c2bd298c335f944bb0e401 248f06726e866942b3d8ca8f411f9067713b7ff8 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>
Diffstat (limited to 'include')
-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 849c7df23181..2c7d60ca3548 100644
--- a/include/net/sock.h
+++ b/include/net/sock.h
@@ -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;
}
/*