Linux wireless drivers development
 help / color / mirror / Atom feed
* RFC/RFT: compat-wireless for 2.6.32.4 - MQ backport support
@ 2010-01-21  2:55 Luis R. Rodriguez
  2010-01-21  9:44 ` Johannes Berg
  0 siblings, 1 reply; 5+ messages in thread
From: Luis R. Rodriguez @ 2010-01-21  2:55 UTC (permalink / raw)
  To: linux-wireless

The 2.6.32.4 kernel got added MQ support back. I've tried to backport
this and this is what I have so far:

http://bombadil.infradead.org/~mcgrof/tmp/compat-wireless-2.6.32.4-rc1.tar.bz2

Not sure about the select queue stuff yet though. Reports of uses of
ath9k (./scripts/driver-select ath9k) on 2.6.23..2.6.26 would be
appreciated.

  Luis

--- 18-multiqueue.patch ---

The 2.6.23 kernel added multiqueue support. That release
relied on the on the notion of struct net_device_subqueue
attached to the netdevice struct as an array. The 2.6.27
renamed these to struct netdev_queue, amogst other changes.

For kernels 2.6.23..2.6.26 then we backport MQ support by
using the equivalent calls on the struct netdev_queue to
the struct net_device_subqueue.

For older kernels than 2.6.23 we can only stop all the
queues then.

--- a/net/mac80211/util.c	2010-01-20 18:35:04.000000000 -0800
+++ a/net/mac80211/util.c	2010-01-20 18:34:11.000000000 -0800
@@ -287,7 +287,13 @@
 
 	rcu_read_lock();
 	list_for_each_entry_rcu(sdata, &local->interfaces, list)
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,27))
 		netif_tx_wake_queue(netdev_get_tx_queue(sdata->dev, queue));
+#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23))
+		netif_start_subqueue(sdata->dev, queue);
+#else
+		netif_wake_queue(sdata->dev);
+#endif
 	rcu_read_unlock();
 }
 
@@ -322,7 +328,13 @@
 
 	rcu_read_lock();
 	list_for_each_entry_rcu(sdata, &local->interfaces, list)
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,27))
 		netif_tx_stop_queue(netdev_get_tx_queue(sdata->dev, queue));
+#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23))
+		netif_stop_subqueue(sdata->dev, queue);
+#else
+		netif_stop_queue(sdata->dev);
+#endif
 	rcu_read_unlock();
 }
 

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-01-21 18:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-21  2:55 RFC/RFT: compat-wireless for 2.6.32.4 - MQ backport support Luis R. Rodriguez
2010-01-21  9:44 ` Johannes Berg
2010-01-21 18:16   ` Luis R. Rodriguez
2010-01-21 18:38     ` Johannes Berg
2010-01-21 18:56       ` Luis R. Rodriguez

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox