From: David Miller <davem@davemloft.net>
To: martin@decky.cz
Cc: j@w1.fi, linux-kernel@vger.kernel.org, linux-wireless@vger.kernel.org
Subject: Re: [PATCH] hostap: Revert a toxic part of the conversion to net_device_ops
Date: Wed, 09 Sep 2009 20:35:00 -0700 (PDT) [thread overview]
Message-ID: <20090909.203500.53952434.davem@davemloft.net> (raw)
In-Reply-To: <alpine.LFD.2.00.0909100333230.4334@hefaistos.decky.cz>
From: Martin Decky <martin@decky.cz>
Date: Thu, 10 Sep 2009 03:44:47 +0200 (CEST)
Thanks, linux-wireless CC:'d, please CC: them on all wireless
patches in the future.
> From: Martin Decky <martin@decky.cz>
>
> As the hostap driver was converted to use net_device_ops, a mistake was
> made in hostap_main.c (commit 5ae4efbcd2611562a8b93596be034e63495706a5).
> Originally, the tx_queue_len was set to 0 for every other interface than
> HOSTAP_INTERFACE_MASTER, but the new fragment of code sets tx_queue_len to
> 0 only for HOSTAP_INTERFACE_MASTER. The opposite of the previous
> behavior makes the driver to drop all packets in AP mode.
>
> Change the way 0 is assigned to tx_queue_len according to the original
> logic.
>
> Signed-off-by: Martin Decky <martin@decky.cz>
> ----
> diff -Naurp linux-2.6.30.orig/drivers/net/wireless/hostap/hostap_main.c linux-2.6.30/drivers/net/wireless/hostap/hostap_main.c
> --- linux-2.6.30.orig/drivers/net/wireless/hostap/hostap_main.c 2009-06-10 05:05:27.000000000 +0200
> +++ linux-2.6.30/drivers/net/wireless/hostap/hostap_main.c 2009-09-08 11:11:23.892816045 +0200
> @@ -875,15 +875,16 @@ void hostap_setup_dev(struct net_device
>
> switch(type) {
> case HOSTAP_INTERFACE_AP:
> + dev->tx_queue_len = 0; /* use main radio device queue */
> dev->netdev_ops = &hostap_mgmt_netdev_ops;
> dev->type = ARPHRD_IEEE80211;
> dev->header_ops = &hostap_80211_ops;
> break;
> case HOSTAP_INTERFACE_MASTER:
> - dev->tx_queue_len = 0; /* use main radio device queue */
> dev->netdev_ops = &hostap_master_ops;
> break;
> default:
> + dev->tx_queue_len = 0; /* use main radio device queue */
> dev->netdev_ops = &hostap_netdev_ops;
> }
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
parent reply other threads:[~2009-09-10 3:34 UTC|newest]
Thread overview: expand[flat|nested] mbox.gz Atom feed
[parent not found: <alpine.LFD.2.00.0909100333230.4334@hefaistos.decky.cz>]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090909.203500.53952434.davem@davemloft.net \
--to=davem@davemloft.net \
--cc=j@w1.fi \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-wireless@vger.kernel.org \
--cc=martin@decky.cz \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox