diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2008-10-07 17:18:42 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-10-07 17:18:42 -0400 |
commit | c57943a1c96214ee68f3890bb6772841ffbfd606 (patch) | |
tree | bfe79b29240d442c8ea104a89c2e827032b2824e /net/core | |
parent | b339a47c370ec669f789c5989f54eec1d78574bb (diff) |
net: wrap sk->sk_backlog_rcv()
Wrap calling sk->sk_backlog_rcv() in a function. This will allow extending the
generic sk_backlog_rcv behaviour.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/sock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/core/sock.c b/net/core/sock.c index 2d358dd8a03e..5e2a3132a8c9 100644 --- a/net/core/sock.c +++ b/net/core/sock.c | |||
@@ -327,7 +327,7 @@ int sk_receive_skb(struct sock *sk, struct sk_buff *skb, const int nested) | |||
327 | */ | 327 | */ |
328 | mutex_acquire(&sk->sk_lock.dep_map, 0, 1, _RET_IP_); | 328 | mutex_acquire(&sk->sk_lock.dep_map, 0, 1, _RET_IP_); |
329 | 329 | ||
330 | rc = sk->sk_backlog_rcv(sk, skb); | 330 | rc = sk_backlog_rcv(sk, skb); |
331 | 331 | ||
332 | mutex_release(&sk->sk_lock.dep_map, 1, _RET_IP_); | 332 | mutex_release(&sk->sk_lock.dep_map, 1, _RET_IP_); |
333 | } else | 333 | } else |
@@ -1374,7 +1374,7 @@ static void __release_sock(struct sock *sk) | |||
1374 | struct sk_buff *next = skb->next; | 1374 | struct sk_buff *next = skb->next; |
1375 | 1375 | ||
1376 | skb->next = NULL; | 1376 | skb->next = NULL; |
1377 | sk->sk_backlog_rcv(sk, skb); | 1377 | sk_backlog_rcv(sk, skb); |
1378 | 1378 | ||
1379 | /* | 1379 | /* |
1380 | * We are in process context here with softirqs | 1380 | * We are in process context here with softirqs |