* [PATCH] backports: add spatch to handle IFF_NO_QUEUE
@ 2015-08-26 7:07 Johannes Berg
2015-09-09 8:46 ` Johannes Berg
0 siblings, 1 reply; 2+ messages in thread
From: Johannes Berg @ 2015-08-26 7:07 UTC (permalink / raw)
To: backports; +Cc: emmanuel.grumbach, Johannes Berg
From: Johannes Berg <johannes.berg@intel.com>
This flag doesn't exist on newer kernels, but replaced the tx_queue_len
assignment, so can't just be backported to have no effect. Instead, add
a semantic patch that puts back the tx_queue_len=0 assignment on older
kernel versions.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
---
patches/collateral-evolutions/network/0062-iff-no-queue.cocci | 9 +++++++++
1 file changed, 9 insertions(+)
create mode 100644 patches/collateral-evolutions/network/0062-iff-no-queue.cocci
diff --git a/patches/collateral-evolutions/network/0062-iff-no-queue.cocci b/patches/collateral-evolutions/network/0062-iff-no-queue.cocci
new file mode 100644
index 000000000000..984dcbe64bad
--- /dev/null
+++ b/patches/collateral-evolutions/network/0062-iff-no-queue.cocci
@@ -0,0 +1,9 @@
+@@
+expression E;
+@@
+
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,2,0)
+ E->priv_flags |= IFF_NO_QUEUE;
++#else
++E->tx_queue_len = 0;
++#endif
--
2.1.4
--
To unsubscribe from this list: send the line "unsubscribe backports" in
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] backports: add spatch to handle IFF_NO_QUEUE
2015-08-26 7:07 [PATCH] backports: add spatch to handle IFF_NO_QUEUE Johannes Berg
@ 2015-09-09 8:46 ` Johannes Berg
0 siblings, 0 replies; 2+ messages in thread
From: Johannes Berg @ 2015-09-09 8:46 UTC (permalink / raw)
To: backports; +Cc: David Spinadel
On Wed, 2015-08-26 at 09:07 +0200, Johannes Berg wrote:
>
> ++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,2,0)
>
Actually, that needs to be > instead of >= of course.
johannes
--
To unsubscribe from this list: send the line "unsubscribe backports" in
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-09-09 8:46 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-26 7:07 [PATCH] backports: add spatch to handle IFF_NO_QUEUE Johannes Berg
2015-09-09 8:46 ` Johannes Berg
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.