diff options
author | KOVACS Krisztian <hidden@sch.bme.hu> | 2008-10-07 15:41:01 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-10-07 15:41:01 -0400 |
commit | 23542618deb77cfed312842fe8c41ed19fb16470 (patch) | |
tree | 9658279a6e3593846a9127c7a8bffb7ce0077d62 /include/net/sock.h | |
parent | 607c4aaf03041c8bd81555a0218050c0f895088e (diff) |
inet: Don't lookup the socket if there's a socket attached to the skb
Use the socket cached in the skb if it's present.
Signed-off-by: KOVACS Krisztian <hidden@sch.bme.hu>
Acked-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/sock.h')
-rw-r--r-- | include/net/sock.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/net/sock.h b/include/net/sock.h index 75a312d3888a..18f96708f3a6 100644 --- a/include/net/sock.h +++ b/include/net/sock.h | |||
@@ -1324,6 +1324,18 @@ static inline void sk_change_net(struct sock *sk, struct net *net) | |||
1324 | sock_net_set(sk, hold_net(net)); | 1324 | sock_net_set(sk, hold_net(net)); |
1325 | } | 1325 | } |
1326 | 1326 | ||
1327 | static inline struct sock *skb_steal_sock(struct sk_buff *skb) | ||
1328 | { | ||
1329 | if (unlikely(skb->sk)) { | ||
1330 | struct sock *sk = skb->sk; | ||
1331 | |||
1332 | skb->destructor = NULL; | ||
1333 | skb->sk = NULL; | ||
1334 | return sk; | ||
1335 | } | ||
1336 | return NULL; | ||
1337 | } | ||
1338 | |||
1327 | extern void sock_enable_timestamp(struct sock *sk); | 1339 | extern void sock_enable_timestamp(struct sock *sk); |
1328 | extern int sock_get_timestamp(struct sock *, struct timeval __user *); | 1340 | extern int sock_get_timestamp(struct sock *, struct timeval __user *); |
1329 | extern int sock_get_timestampns(struct sock *, struct timespec __user *); | 1341 | extern int sock_get_timestampns(struct sock *, struct timespec __user *); |