aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/sock.h
diff options
context:
space:
mode:
authorKOVACS Krisztian <hidden@sch.bme.hu>2008-10-07 15:41:01 -0400
committerDavid S. Miller <davem@davemloft.net>2008-10-07 15:41:01 -0400
commit23542618deb77cfed312842fe8c41ed19fb16470 (patch)
tree9658279a6e3593846a9127c7a8bffb7ce0077d62 /include/net/sock.h
parent607c4aaf03041c8bd81555a0218050c0f895088e (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.h12
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
1327static 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
1327extern void sock_enable_timestamp(struct sock *sk); 1339extern void sock_enable_timestamp(struct sock *sk);
1328extern int sock_get_timestamp(struct sock *, struct timeval __user *); 1340extern int sock_get_timestamp(struct sock *, struct timeval __user *);
1329extern int sock_get_timestampns(struct sock *, struct timespec __user *); 1341extern int sock_get_timestampns(struct sock *, struct timespec __user *);