summaryrefslogtreecommitdiff
path: root/patches/0062-iff-no-queue.cocci
blob: 237985c538d2f207c1504930c7190969d3739f73 (plain)
1
2
3
4
5
6
7
8
9
@@
expression E;
@@

+#if LINUX_VERSION_IS_GEQ(4,3,0)
 E->priv_flags |= IFF_NO_QUEUE;
+#else
+E->tx_queue_len = 0;
+#endif