Gordon, Charles wrote: > A follow up question on this is if my transmit routine does not have its own queue and the H/W can only transmit 1 packet at a time, should the transmit routine call ieee80211_stop_queue() when it starts the transmit procedure, and then call ieee80211_wake_queue() when the hardware indicates it has finished transmitting the packet. I'm not an expert on mac80211, but if you look at the code in drivers/net/wireless/rtl818x/rtl8187_dev.c, you will see that they TX packets are not queued by the driver. When the tx ops routine is called, the data is processed as required and the packet is sent on to the hardware. In the callback routine, certain status information is filled in and ieee80211_tx_status_irqsafe() is called to finish the transaction. You only need to worry about protecting the private data from concurrent access. Larry -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html