Linux wireless drivers development
 help / color / mirror / Atom feed
From: Johannes Berg <johannes@sipsolutions.net>
To: Helmut Schaa <helmut.schaa@googlemail.com>
Cc: linux-wireless@vger.kernel.org, linville@tuxdriver.com
Subject: Re: [PATCH] mac80211: Fix endian bug in radiotap header generation
Date: Fri, 18 Nov 2011 17:08:40 +0100	[thread overview]
Message-ID: <1321632520.10266.66.camel@jlt3.sipsolutions.net> (raw)
In-Reply-To: <1321632136-9398-1-git-send-email-helmut.schaa@googlemail.com> (sfid-20111118_170256_838580_AF67C4F8)

On Fri, 2011-11-18 at 17:02 +0100, Helmut Schaa wrote:
> I intoduced this bug in commit a2fe81667410723d941a688e1958a49d67ca3346
> "mac80211: Build TX radiotap header dynamically"

Acked-by: Johannes Berg <johannes@sipsolutions.net>

> Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com>
> ---
>  net/mac80211/status.c |    8 ++++----
>  1 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/net/mac80211/status.c b/net/mac80211/status.c
> index a9da6ee..46222ce 100644
> --- a/net/mac80211/status.c
> +++ b/net/mac80211/status.c
> @@ -260,7 +260,7 @@ static void ieee80211_add_tx_radiotap_header(struct ieee80211_supported_band
>  	struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
>  	struct ieee80211_radiotap_header *rthdr;
>  	unsigned char *pos;
> -	__le16 txflags;
> +	u16 txflags;
>  
>  	rthdr = (struct ieee80211_radiotap_header *) skb_push(skb, rtap_len);
>  
> @@ -290,13 +290,13 @@ static void ieee80211_add_tx_radiotap_header(struct ieee80211_supported_band
>  	txflags = 0;
>  	if (!(info->flags & IEEE80211_TX_STAT_ACK) &&
>  	    !is_multicast_ether_addr(hdr->addr1))
> -		txflags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_FAIL);
> +		txflags |= IEEE80211_RADIOTAP_F_TX_FAIL;
>  
>  	if ((info->status.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) ||
>  	    (info->status.rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT))
> -		txflags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_CTS);
> +		txflags |= IEEE80211_RADIOTAP_F_TX_CTS;
>  	else if (info->status.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
> -		txflags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_RTS);
> +		txflags |= IEEE80211_RADIOTAP_F_TX_RTS;
>  
>  	put_unaligned_le16(txflags, pos);
>  	pos += 2;

Heh I would've fixed it by just using put_unaligned(txflags, pos) here,
but either is fine with me :-)

johannes


  reply	other threads:[~2011-11-18 16:08 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-10-11 16:08 [PATCH 1/2] mac80211: Build TX radiotap header dynamically Helmut Schaa
2011-10-11 16:08 ` [PATCH 2/2] mac80211: Populate radiotap header with MCS info for TX frames Helmut Schaa
2011-10-11 16:25 ` [PATCH 1/2] mac80211: Build TX radiotap header dynamically Johannes Berg
2011-10-11 17:19   ` Helmut Schaa
2011-10-11 17:38     ` Johannes Berg
2011-11-18 14:31 ` Johannes Berg
2011-11-18 16:02   ` [PATCH] mac80211: Fix endian bug in radiotap header generation Helmut Schaa
2011-11-18 16:08     ` Johannes Berg [this message]
2011-11-18 20:56       ` Helmut Schaa
2011-11-18 20:16         ` Johannes Berg

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=1321632520.10266.66.camel@jlt3.sipsolutions.net \
    --to=johannes@sipsolutions.net \
    --cc=helmut.schaa@googlemail.com \
    --cc=linux-wireless@vger.kernel.org \
    --cc=linville@tuxdriver.com \
    /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