summaryrefslogtreecommitdiff
path: root/patches/0059-skb_xmit_more/skb_no_xmit_more.cocci
diff options
context:
space:
mode:
Diffstat (limited to 'patches/0059-skb_xmit_more/skb_no_xmit_more.cocci')
-rw-r--r--patches/0059-skb_xmit_more/skb_no_xmit_more.cocci4
1 files changed, 2 insertions, 2 deletions
diff --git a/patches/0059-skb_xmit_more/skb_no_xmit_more.cocci b/patches/0059-skb_xmit_more/skb_no_xmit_more.cocci
index ab207bda..ab20c833 100644
--- a/patches/0059-skb_xmit_more/skb_no_xmit_more.cocci
+++ b/patches/0059-skb_xmit_more/skb_no_xmit_more.cocci
@@ -3,7 +3,7 @@ struct sk_buff *skb;
expression E1;
@@
if (E1
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,18,0)
++#if LINUX_VERSION_IS_GEQ(3,18,0)
|| !skb->xmit_more
-+#endif /* if LINUX_VERSION_CODE >= KERNEL_VERSION(3,18,0) */
++#endif /* if LINUX_VERSION_IS_GEQ(3,18,0) */
) {...}