diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2007-07-09 22:16:00 +0200 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-07-11 07:18:50 +0200 |
commit | 6f11df8355e8f59f7572bf6ac1f63d692483b0c6 (patch) | |
tree | 953a9f37a6aa18e6086bbc346cf61ae38414ac2a /net/core | |
parent | [NET]: Make some network-related proc files use seq_list_xxx helpers (diff) | |
download | linux-6f11df8355e8f59f7572bf6ac1f63d692483b0c6.tar.xz linux-6f11df8355e8f59f7572bf6ac1f63d692483b0c6.zip |
[NET]: "wrong timeout value in sk_wait_data()": cleanups
- save 4 bytes
- it's read-mostly.
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Acked-by: Vasily Averin <vvs@sw.ru>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/sock.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/core/sock.c b/net/core/sock.c index 252d21a1bb04..091032a250c7 100644 --- a/net/core/sock.c +++ b/net/core/sock.c @@ -210,7 +210,8 @@ static int sock_set_timeout(long *timeo_p, char __user *optval, int optlen) return -EDOM; if (tv.tv_sec < 0) { - static int warned = 0; + static int warned __read_mostly; + *timeo_p = 0; if (warned < 10 && net_ratelimit()) warned++; |