projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d92a680
)
mwifiex: remove extra padding to AMSDU
author
Yogesh Ashok Powar
<
[email protected]
>
Sat, 4 Aug 2012 01:06:00 +0000
(18:06 -0700)
committer
John W. Linville
<
[email protected]
>
Mon, 6 Aug 2012 19:12:46 +0000
(15:12 -0400)
Since commit:
fb3c19bc9687d972b83faf366b38ac807eca8f25
, adding
extra padding to AMSDU is redundant since same is being performed at
mwifiex_11n_aggregate_pkt after forming the AMSDU packet. Fixing it
by removing it.
Signed-off-by: Yogesh Ashok Powar <
[email protected]
>
Signed-off-by: Amitkumar Karwar <
[email protected]
>
Signed-off-by: Kiran Divekar <
[email protected]
>
Signed-off-by: Bing Zhao <
[email protected]
>
Signed-off-by: John W. Linville <
[email protected]
>
drivers/net/wireless/mwifiex/11n_aggr.c
patch
|
blob
|
history
diff --git
a/drivers/net/wireless/mwifiex/11n_aggr.c
b/drivers/net/wireless/mwifiex/11n_aggr.c
index c631c7cc85f1f225f9193e00e294dad0e43afe9e..04222f27665ffcb3bd9a2c265e6b5dbb94095caa 100644
(file)
--- a/
drivers/net/wireless/mwifiex/11n_aggr.c
+++ b/
drivers/net/wireless/mwifiex/11n_aggr.c
@@
-84,7
+84,6
@@
mwifiex_11n_form_amsdu_pkt(struct sk_buff *skb_aggr,
*pad = (((skb_src->len + LLC_SNAP_LEN) & 3)) ? (4 - (((skb_src->len +
LLC_SNAP_LEN)) & 3)) : 0;
- skb_put(skb_aggr, *pad);
return skb_aggr->len + *pad;
}