]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
net: Add a test to see if a skb is freeable in irq context
authorEric W. Biederman <ebiederm@xmission.com>
Tue, 1 Apr 2014 19:20:24 +0000 (12:20 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 1 Apr 2014 21:53:36 +0000 (17:53 -0400)
Currently netpoll and skb_release_head_state assume that a skb is
freeable in hard irq context except when skb->destructor is set.

The reality is far from this.  So add a function skb_irq_freeable to
compute the full test and in the process be the living documentation
of what the requirements are of actually freeing a skb in hard irq
context.

Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Acked-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/skbuff.h

index 31edf63937a15e1e345c003b1b48ac15e02ca685..350eebe770d94800acbb1b72f3b85ca611aeac94 100644 (file)
@@ -2831,6 +2831,19 @@ static inline void skb_init_secmark(struct sk_buff *skb)
 { }
 #endif
 
+static inline bool skb_irq_freeable(const struct sk_buff *skb)
+{
+       return !skb->destructor &&
+#if IS_ENABLED(CONFIG_XFRM)
+               !skb->sp &&
+#endif
+#if IS_ENABLED(CONFIG_NF_CONNTRACK)
+               !skb->nfct &&
+#endif
+               !skb->_skb_refdst &&
+               !skb_has_frag_list(skb);
+}
+
 static inline void skb_set_queue_mapping(struct sk_buff *skb, u16 queue_mapping)
 {
        skb->queue_mapping = queue_mapping;