diff options
| author | Zhu Yi <[email protected]> | 2010-03-04 18:01:47 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2010-03-05 21:34:03 +0000 |
| commit | a3a858ff18a72a8d388e31ab0d98f7e944841a62 (patch) | |
| tree | e51a59ce280f0aa818ac5e1d989bc8a137b7cd47 /net/tipc/socket.c | |
| parent | x25: use limited socket backlog (diff) | |
| download | kernel-a3a858ff18a72a8d388e31ab0d98f7e944841a62.tar.gz kernel-a3a858ff18a72a8d388e31ab0d98f7e944841a62.zip | |
net: backlog functions rename
sk_add_backlog -> __sk_add_backlog
sk_add_backlog_limited -> sk_add_backlog
Signed-off-by: Zhu Yi <[email protected]>
Acked-by: Eric Dumazet <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/tipc/socket.c')
| -rw-r--r-- | net/tipc/socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tipc/socket.c b/net/tipc/socket.c index 22bfbc33a8ac..4b235fc1c70f 100644 --- a/net/tipc/socket.c +++ b/net/tipc/socket.c @@ -1322,7 +1322,7 @@ static u32 dispatch(struct tipc_port *tport, struct sk_buff *buf) if (!sock_owned_by_user(sk)) { res = filter_rcv(sk, buf); } else { - if (sk_add_backlog_limited(sk, buf)) + if (sk_add_backlog(sk, buf)) res = TIPC_ERR_OVERLOAD; else res = TIPC_OK; |
