linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] mac80211: remove useless tid assignment for management and control frames
@ 2008-07-01 11:29 Tomas Winkler
  2008-07-01 11:29 ` [PATCH 1/1] mac80211: remove usless tid assignment for managment " Tomas Winkler
  0 siblings, 1 reply; 6+ messages in thread
From: Tomas Winkler @ 2008-07-01 11:29 UTC (permalink / raw)
  To: linville, johannes, yi.zhu; +Cc: linux-wireless, Tomas Winkler

This patch removes useless tid assignment for management and control frames

Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
---
 net/mac80211/wme.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/net/mac80211/wme.c b/net/mac80211/wme.c
index f23b5a4..30d3b5b 100644
--- a/net/mac80211/wme.c
+++ b/net/mac80211/wme.c
@@ -210,7 +210,6 @@ static int wme_qdiscop_enqueue(struct sk_buff *skb, struct Qdisc* qd)
 			kfree_skb(skb);
 			err = NET_XMIT_DROP;
 	} else {
-		tid = skb->priority & QOS_CONTROL_TAG1D_MASK;
 		skb_set_queue_mapping(skb, queue);
 		qdisc = q->queues[queue];
 		err = qdisc->enqueue(skb, qdisc);
-- 
1.5.4.1

---------------------------------------------------------------------
Intel Israel (74) Limited

This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.


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

* [PATCH 1/1] mac80211: remove usless tid assignment for managment and control frames
  2008-07-01 11:29 [PATCH 1/1] mac80211: remove useless tid assignment for management and control frames Tomas Winkler
@ 2008-07-01 11:29 ` Tomas Winkler
  2008-07-01 11:32   ` Johannes Berg
  0 siblings, 1 reply; 6+ messages in thread
From: Tomas Winkler @ 2008-07-01 11:29 UTC (permalink / raw)
  To: linville, johannes, yi.zhu; +Cc: linux-wireless, Tomas Winkler

This patch removes useless tid assignment for management and control frames

Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
---
 net/mac80211/wme.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/net/mac80211/wme.c b/net/mac80211/wme.c
index f23b5a4..30d3b5b 100644
--- a/net/mac80211/wme.c
+++ b/net/mac80211/wme.c
@@ -210,7 +210,6 @@ static int wme_qdiscop_enqueue(struct sk_buff *skb, struct Qdisc* qd)
 			kfree_skb(skb);
 			err = NET_XMIT_DROP;
 	} else {
-		tid = skb->priority & QOS_CONTROL_TAG1D_MASK;
 		skb_set_queue_mapping(skb, queue);
 		qdisc = q->queues[queue];
 		err = qdisc->enqueue(skb, qdisc);
-- 
1.5.4.1

---------------------------------------------------------------------
Intel Israel (74) Limited

This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.


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

* Re: [PATCH 1/1] mac80211: remove usless tid assignment for managment and control frames
  2008-07-01 11:29 ` [PATCH 1/1] mac80211: remove usless tid assignment for managment " Tomas Winkler
@ 2008-07-01 11:32   ` Johannes Berg
  2008-07-01 11:52     ` Tomas Winkler
  0 siblings, 1 reply; 6+ messages in thread
From: Johannes Berg @ 2008-07-01 11:32 UTC (permalink / raw)
  To: Tomas Winkler; +Cc: linville, yi.zhu, linux-wireless

[-- Attachment #1: Type: text/plain, Size: 819 bytes --]

On Tue, 2008-07-01 at 14:29 +0300, Tomas Winkler wrote:
> This patch removes useless tid assignment for management and control frames
> 
> Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>

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

> ---
>  net/mac80211/wme.c |    1 -
>  1 files changed, 0 insertions(+), 1 deletions(-)
> 
> diff --git a/net/mac80211/wme.c b/net/mac80211/wme.c
> index f23b5a4..30d3b5b 100644
> --- a/net/mac80211/wme.c
> +++ b/net/mac80211/wme.c
> @@ -210,7 +210,6 @@ static int wme_qdiscop_enqueue(struct sk_buff *skb, struct Qdisc* qd)
>  			kfree_skb(skb);
>  			err = NET_XMIT_DROP;
>  	} else {
> -		tid = skb->priority & QOS_CONTROL_TAG1D_MASK;
>  		skb_set_queue_mapping(skb, queue);
>  		qdisc = q->queues[queue];
>  		err = qdisc->enqueue(skb, qdisc);

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

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

* Re: [PATCH 1/1] mac80211: remove usless tid assignment for managment and control frames
  2008-07-01 11:32   ` Johannes Berg
@ 2008-07-01 11:52     ` Tomas Winkler
  2008-07-01 11:55       ` Johannes Berg
  2008-07-01 13:28       ` John W. Linville
  0 siblings, 2 replies; 6+ messages in thread
From: Tomas Winkler @ 2008-07-01 11:52 UTC (permalink / raw)
  To: Johannes Berg; +Cc: linville, yi.zhu, linux-wireless

On Tue, Jul 1, 2008 at 2:32 PM, Johannes Berg <johannes@sipsolutions.net> wrote:
> On Tue, 2008-07-01 at 14:29 +0300, Tomas Winkler wrote:
>> This patch removes useless tid assignment for management and control frames
>>
>> Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
>
> Acked-by: Johannes Berg <johannes@sipsolutions.net>

I would prefer you ack the version without spelling errors :).

John please discard this one
Tomas

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

* Re: [PATCH 1/1] mac80211: remove usless tid assignment for managment and control frames
  2008-07-01 11:52     ` Tomas Winkler
@ 2008-07-01 11:55       ` Johannes Berg
  2008-07-01 13:28       ` John W. Linville
  1 sibling, 0 replies; 6+ messages in thread
From: Johannes Berg @ 2008-07-01 11:55 UTC (permalink / raw)
  To: Tomas Winkler; +Cc: linville, yi.zhu, linux-wireless

[-- Attachment #1: Type: text/plain, Size: 659 bytes --]

On Tue, 2008-07-01 at 14:52 +0300, Tomas Winkler wrote:
> On Tue, Jul 1, 2008 at 2:32 PM, Johannes Berg <johannes@sipsolutions.net> wrote:
> > On Tue, 2008-07-01 at 14:29 +0300, Tomas Winkler wrote:
> >> This patch removes useless tid assignment for management and control frames
> >>
> >> Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
> >
> > Acked-by: Johannes Berg <johannes@sipsolutions.net>
> 
> I would prefer you ack the version without spelling errors :).

Oh! I looked for the difference but didn't find it and so figured you
just sent it out twice accidentally. Feel free to transfer that line to
the other patch.

johannes

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

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

* Re: [PATCH 1/1] mac80211: remove usless tid assignment for managment and control frames
  2008-07-01 11:52     ` Tomas Winkler
  2008-07-01 11:55       ` Johannes Berg
@ 2008-07-01 13:28       ` John W. Linville
  1 sibling, 0 replies; 6+ messages in thread
From: John W. Linville @ 2008-07-01 13:28 UTC (permalink / raw)
  To: Tomas Winkler; +Cc: Johannes Berg, yi.zhu, linux-wireless

On Tue, Jul 01, 2008 at 02:52:57PM +0300, Tomas Winkler wrote:
> On Tue, Jul 1, 2008 at 2:32 PM, Johannes Berg <johannes@sipsolutions.net> wrote:
> > On Tue, 2008-07-01 at 14:29 +0300, Tomas Winkler wrote:
> >> This patch removes useless tid assignment for management and control frames
> >>
> >> Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
> >
> > Acked-by: Johannes Berg <johannes@sipsolutions.net>
> 
> I would prefer you ack the version without spelling errors :).
> 
> John please discard this one

I like the spelling erros, Tomas.  It makes you seem more human!
But, if you insist... :-)

-- 
John W. Linville
linville@tuxdriver.com

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

end of thread, other threads:[~2008-07-01 13:47 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-01 11:29 [PATCH 1/1] mac80211: remove useless tid assignment for management and control frames Tomas Winkler
2008-07-01 11:29 ` [PATCH 1/1] mac80211: remove usless tid assignment for managment " Tomas Winkler
2008-07-01 11:32   ` Johannes Berg
2008-07-01 11:52     ` Tomas Winkler
2008-07-01 11:55       ` Johannes Berg
2008-07-01 13:28       ` John W. Linville

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).