public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH][RESEND] wireless: convert !X & Y to !(X & Y) in iwl4965_is_fat_tx_allowed()
@ 2008-03-25 16:03 Roel Kluin
  2008-03-25 16:08 ` Roel Kluin
  0 siblings, 1 reply; 8+ messages in thread
From: Roel Kluin @ 2008-03-25 16:03 UTC (permalink / raw)
  To: yi.zhu, reinette.chatre; +Cc: linux-wireless, lkml

from include/linux/ieee80211.h:274:
#define IEEE80211_HT_CAP_SUP_WIDTH              0x0002
---
! has a higher priority than &

Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
---
diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c b/drivers/net/wireless/iwlwifi/iwl-4965.c
index d727de8..6576757 100644
--- a/drivers/net/wireless/iwlwifi/iwl-4965.c
+++ b/drivers/net/wireless/iwlwifi/iwl-4965.c
@@ -4589,7 +4589,7 @@ static u8 iwl4965_is_fat_tx_allowed(struct iwl4965_priv *priv,
 
 	if (sta_ht_inf) {
 		if ((!sta_ht_inf->ht_supported) ||
-		   (!sta_ht_inf->cap & IEEE80211_HT_CAP_SUP_WIDTH))
+		   (!(sta_ht_inf->cap & IEEE80211_HT_CAP_SUP_WIDTH)))
 			return 0;
 	}
 

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

* [PATCH][RESEND] wireless: convert !X & Y to !(X & Y) in iwl4965_is_fat_tx_allowed()
@ 2008-03-25 16:03 Roel Kluin
  0 siblings, 0 replies; 8+ messages in thread
From: Roel Kluin @ 2008-03-25 16:03 UTC (permalink / raw)
  To: yi.zhu, reinette.chatre; +Cc: linux-wireless, lkml

from include/linux/ieee80211.h:274:
#define IEEE80211_HT_CAP_SUP_WIDTH              0x0002
---
! has a higher priority than &

Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
---
diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c b/drivers/net/wireless/iwlwifi/iwl-4965.c
index d727de8..6576757 100644
--- a/drivers/net/wireless/iwlwifi/iwl-4965.c
+++ b/drivers/net/wireless/iwlwifi/iwl-4965.c
@@ -4589,7 +4589,7 @@ static u8 iwl4965_is_fat_tx_allowed(struct iwl4965_priv *priv,
 
 	if (sta_ht_inf) {
 		if ((!sta_ht_inf->ht_supported) ||
-		   (!sta_ht_inf->cap & IEEE80211_HT_CAP_SUP_WIDTH))
+		   (!(sta_ht_inf->cap & IEEE80211_HT_CAP_SUP_WIDTH)))
 			return 0;
 	}
 

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

* [PATCH][RESEND] wireless: convert !X & Y to !(X & Y) in iwl4965_is_fat_tx_allowed()
@ 2008-03-25 16:03 Roel Kluin
  2008-03-25 16:30 ` Chatre, Reinette
  0 siblings, 1 reply; 8+ messages in thread
From: Roel Kluin @ 2008-03-25 16:03 UTC (permalink / raw)
  To: yi.zhu, reinette.chatre; +Cc: linux-wireless, lkml

from include/linux/ieee80211.h:274:
#define IEEE80211_HT_CAP_SUP_WIDTH              0x0002
---
! has a higher priority than &

Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
---
diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c b/drivers/net/wireless/iwlwifi/iwl-4965.c
index d727de8..6576757 100644
--- a/drivers/net/wireless/iwlwifi/iwl-4965.c
+++ b/drivers/net/wireless/iwlwifi/iwl-4965.c
@@ -4589,7 +4589,7 @@ static u8 iwl4965_is_fat_tx_allowed(struct iwl4965_priv *priv,
 
 	if (sta_ht_inf) {
 		if ((!sta_ht_inf->ht_supported) ||
-		   (!sta_ht_inf->cap & IEEE80211_HT_CAP_SUP_WIDTH))
+		   (!(sta_ht_inf->cap & IEEE80211_HT_CAP_SUP_WIDTH)))
 			return 0;
 	}
 

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

* Re: [PATCH][RESEND] wireless: convert !X & Y to !(X & Y) in iwl4965_is_fat_tx_allowed()
  2008-03-25 16:03 Roel Kluin
@ 2008-03-25 16:08 ` Roel Kluin
  0 siblings, 0 replies; 8+ messages in thread
From: Roel Kluin @ 2008-03-25 16:08 UTC (permalink / raw)
  To: yi.zhu, reinette.chatre; +Cc: linux-wireless, lkml

Sorry for the triple mail, it appeared to fail twice.

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

* RE: [PATCH][RESEND] wireless: convert !X & Y to !(X & Y) in iwl4965_is_fat_tx_allowed()
  2008-03-25 16:03 [PATCH][RESEND] wireless: convert !X & Y to !(X & Y) in iwl4965_is_fat_tx_allowed() Roel Kluin
@ 2008-03-25 16:30 ` Chatre, Reinette
  2008-03-25 17:42   ` John W. Linville
  0 siblings, 1 reply; 8+ messages in thread
From: Chatre, Reinette @ 2008-03-25 16:30 UTC (permalink / raw)
  To: Roel Kluin, Zhu, Yi; +Cc: linux-wireless, lkml

On Tuesday, March 25, 2008 9:04 AM, Roel Kluin  wrote:

> from include/linux/ieee80211.h:274:
> #define IEEE80211_HT_CAP_SUP_WIDTH              0x0002 ---
> ! has a higher priority than &
> 
> Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
> ---
> diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c
> b/drivers/net/wireless/iwlwifi/iwl-4965.c
> index d727de8..6576757 100644
> --- a/drivers/net/wireless/iwlwifi/iwl-4965.c
> +++ b/drivers/net/wireless/iwlwifi/iwl-4965.c
> @@ -4589,7 +4589,7 @@ static u8
> iwl4965_is_fat_tx_allowed(struct iwl4965_priv *priv,
> 
> 	if (sta_ht_inf) {
> 		if ((!sta_ht_inf->ht_supported) ||
> -		   (!sta_ht_inf->cap & IEEE80211_HT_CAP_SUP_WIDTH))
> +		   (!(sta_ht_inf->cap & IEEE80211_HT_CAP_SUP_WIDTH)))
return 0;
> 	}

This patch has already been acked and merged into wireless-testing, and
afaik already pushed further upstream.

Reinette

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

* Re: [PATCH][RESEND] wireless: convert !X & Y to !(X & Y) in iwl4965_is_fat_tx_allowed()
  2008-03-25 16:30 ` Chatre, Reinette
@ 2008-03-25 17:42   ` John W. Linville
  2008-03-25 18:26     ` [PATCH][RESEND] wireless: convert !X & Y to !(X & Y) iniwl4965_is_fat_tx_allowed() Chatre, Reinette
  0 siblings, 1 reply; 8+ messages in thread
From: John W. Linville @ 2008-03-25 17:42 UTC (permalink / raw)
  To: Chatre, Reinette; +Cc: Roel Kluin, Zhu, Yi, linux-wireless, lkml

On Tue, Mar 25, 2008 at 09:30:58AM -0700, Chatre, Reinette wrote:
> On Tuesday, March 25, 2008 9:04 AM, Roel Kluin  wrote:
> 
> > from include/linux/ieee80211.h:274:
> > #define IEEE80211_HT_CAP_SUP_WIDTH              0x0002 ---
> > ! has a higher priority than &
> > 
> > Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
> > ---
> > diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c
> > b/drivers/net/wireless/iwlwifi/iwl-4965.c
> > index d727de8..6576757 100644
> > --- a/drivers/net/wireless/iwlwifi/iwl-4965.c
> > +++ b/drivers/net/wireless/iwlwifi/iwl-4965.c
> > @@ -4589,7 +4589,7 @@ static u8
> > iwl4965_is_fat_tx_allowed(struct iwl4965_priv *priv,
> > 
> > 	if (sta_ht_inf) {
> > 		if ((!sta_ht_inf->ht_supported) ||
> > -		   (!sta_ht_inf->cap & IEEE80211_HT_CAP_SUP_WIDTH))
> > +		   (!(sta_ht_inf->cap & IEEE80211_HT_CAP_SUP_WIDTH)))
> return 0;
> > 	}
> 
> This patch has already been acked and merged into wireless-testing, and
> afaik already pushed further upstream.

Yes, but FWIW the problem exists in the 2.6.25 stream as well.
I've been holding-back a patch to fix it there, trying to decide if it
is worth creating the merge conflict to fix it there.  I'm inclined
to think it is better to let things lay as they are and send that
patch for the -stable series once 2.6.25 ships.

Any thoughts on that?

John
-- 
John W. Linville
linville@tuxdriver.com

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

* RE: [PATCH][RESEND] wireless: convert !X & Y to !(X & Y) iniwl4965_is_fat_tx_allowed()
  2008-03-25 17:42   ` John W. Linville
@ 2008-03-25 18:26     ` Chatre, Reinette
  2008-03-25 18:59       ` Tomas Winkler
  0 siblings, 1 reply; 8+ messages in thread
From: Chatre, Reinette @ 2008-03-25 18:26 UTC (permalink / raw)
  To: John W. Linville; +Cc: Roel Kluin, Zhu, Yi, linux-wireless, lkml

On Tuesday, March 25, 2008 10:42 AM, John W. Linville  wrote:

> On Tue, Mar 25, 2008 at 09:30:58AM -0700, Chatre, Reinette wrote:
>> On Tuesday, March 25, 2008 9:04 AM, Roel Kluin  wrote:
>> 
>>> from include/linux/ieee80211.h:274:
>>> #define IEEE80211_HT_CAP_SUP_WIDTH              0x0002 ---
>>> ! has a higher priority than &
>>> 
>>> Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
>>> ---
>>> diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c
>>> b/drivers/net/wireless/iwlwifi/iwl-4965.c
>>> index d727de8..6576757 100644
>>> --- a/drivers/net/wireless/iwlwifi/iwl-4965.c
>>> +++ b/drivers/net/wireless/iwlwifi/iwl-4965.c
>>> @@ -4589,7 +4589,7 @@ static u8
>>> iwl4965_is_fat_tx_allowed(struct iwl4965_priv *priv,
>>> 
>>> 	if (sta_ht_inf) {
>>> 		if ((!sta_ht_inf->ht_supported) ||
>>> -		   (!sta_ht_inf->cap & IEEE80211_HT_CAP_SUP_WIDTH))
>>> +		   (!(sta_ht_inf->cap & IEEE80211_HT_CAP_SUP_WIDTH)))
return 0;
>>> 	}
>> 
>> This patch has already been acked and merged into wireless-testing,
>> and afaik already pushed further upstream.
> 
> Yes, but FWIW the problem exists in the 2.6.25 stream as well.
> I've been holding-back a patch to fix it there, trying to decide if it
> is worth creating the merge conflict to fix it there.  I'm inclined
> to think it is better to let things lay as they are and send that
> patch for the -stable series once 2.6.25 ships.
> 
> Any thoughts on that?

I see. The patch is small and I thus assume a merge conflict will be
easy to resolve. Yet ... I do not know what is really involved in the
upstream code movements, while I know that you do. If you say it is
better to wait until stable then I am ok with it.

Thanks

Reinette

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

* Re: [PATCH][RESEND] wireless: convert !X & Y to !(X & Y) iniwl4965_is_fat_tx_allowed()
  2008-03-25 18:26     ` [PATCH][RESEND] wireless: convert !X & Y to !(X & Y) iniwl4965_is_fat_tx_allowed() Chatre, Reinette
@ 2008-03-25 18:59       ` Tomas Winkler
  0 siblings, 0 replies; 8+ messages in thread
From: Tomas Winkler @ 2008-03-25 18:59 UTC (permalink / raw)
  To: Chatre, Reinette
  Cc: John W. Linville, Roel Kluin, Zhu, Yi, linux-wireless, lkml

On Tue, Mar 25, 2008 at 8:26 PM, Chatre, Reinette
<reinette.chatre@intel.com> wrote:
>
> On Tuesday, March 25, 2008 10:42 AM, John W. Linville  wrote:
>
>  > On Tue, Mar 25, 2008 at 09:30:58AM -0700, Chatre, Reinette wrote:
>  >> On Tuesday, March 25, 2008 9:04 AM, Roel Kluin  wrote:
>  >>
>  >>> from include/linux/ieee80211.h:274:
>  >>> #define IEEE80211_HT_CAP_SUP_WIDTH              0x0002 ---
>  >>> ! has a higher priority than &
>  >>>
>  >>> Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
>  >>> ---
>  >>> diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c
>  >>> b/drivers/net/wireless/iwlwifi/iwl-4965.c
>  >>> index d727de8..6576757 100644
>  >>> --- a/drivers/net/wireless/iwlwifi/iwl-4965.c
>  >>> +++ b/drivers/net/wireless/iwlwifi/iwl-4965.c
>  >>> @@ -4589,7 +4589,7 @@ static u8
>  >>> iwl4965_is_fat_tx_allowed(struct iwl4965_priv *priv,
>  >>>
>  >>>     if (sta_ht_inf) {
>  >>>             if ((!sta_ht_inf->ht_supported) ||
>  >>> -              (!sta_ht_inf->cap & IEEE80211_HT_CAP_SUP_WIDTH))
>  >>> +              (!(sta_ht_inf->cap & IEEE80211_HT_CAP_SUP_WIDTH)))
>  return 0;
>  >>>     }
>  >>
>  >> This patch has already been acked and merged into wireless-testing,
>  >> and afaik already pushed further upstream.
>  >
>  > Yes, but FWIW the problem exists in the 2.6.25 stream as well.
>  > I've been holding-back a patch to fix it there, trying to decide if it
>  > is worth creating the merge conflict to fix it there.  I'm inclined
>  > to think it is better to let things lay as they are and send that
>  > patch for the -stable series once 2.6.25 ships.
>  >
>  > Any thoughts on that?
>
>  I see. The patch is small and I thus assume a merge conflict will be
>  easy to resolve. Yet ... I do not know what is really involved in the
>  upstream code movements, while I know that you do. If you say it is
>  better to wait until stable then I am ok with it.

I have to find the patch but I believe we've published a fix for this
long before this particular patch was born.
Anyhow if HT is enabled in 2.6.25 I would prefer  a conflict then a bug.

Thanks
Tomas

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

end of thread, other threads:[~2008-03-25 19:00 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-25 16:03 [PATCH][RESEND] wireless: convert !X & Y to !(X & Y) in iwl4965_is_fat_tx_allowed() Roel Kluin
2008-03-25 16:30 ` Chatre, Reinette
2008-03-25 17:42   ` John W. Linville
2008-03-25 18:26     ` [PATCH][RESEND] wireless: convert !X & Y to !(X & Y) iniwl4965_is_fat_tx_allowed() Chatre, Reinette
2008-03-25 18:59       ` Tomas Winkler
  -- strict thread matches above, loose matches on Subject: below --
2008-03-25 16:03 [PATCH][RESEND] wireless: convert !X & Y to !(X & Y) in iwl4965_is_fat_tx_allowed() Roel Kluin
2008-03-25 16:03 Roel Kluin
2008-03-25 16:08 ` Roel Kluin

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