Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
42cecc34
Commit
42cecc34
authored
Sep 19, 2011
by
John W. Linville
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "ath9k: do not insert padding into tx buffers on AR9380+"
This reverts commit
4245d313
.
parent
376cf5d3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
37 deletions
+19
-37
drivers/net/wireless/ath/ath9k/xmit.c
drivers/net/wireless/ath/ath9k/xmit.c
+19
-37
No files found.
drivers/net/wireless/ath/ath9k/xmit.c
View file @
42cecc34
...
...
@@ -1017,8 +1017,6 @@ static void ath_tx_fill_desc(struct ath_softc *sc, struct ath_buf *bf,
while
(
bf
)
{
struct
sk_buff
*
skb
=
bf
->
bf_mpdu
;
struct
ath_frame_info
*
fi
=
get_frame_info
(
skb
);
struct
ieee80211_hdr
*
hdr
;
int
padpos
,
padsize
;
info
.
type
=
get_hw_packet_type
(
skb
);
if
(
bf
->
bf_next
)
...
...
@@ -1026,20 +1024,8 @@ static void ath_tx_fill_desc(struct ath_softc *sc, struct ath_buf *bf,
else
info
.
link
=
0
;
if
(
ah
->
caps
.
hw_caps
&
ATH9K_HW_CAP_EDMA
)
{
hdr
=
(
struct
ieee80211_hdr
*
)
skb
->
data
;
padpos
=
ath9k_cmn_padpos
(
hdr
->
frame_control
);
padsize
=
padpos
&
3
;
info
.
buf_addr
[
0
]
=
bf
->
bf_buf_addr
;
info
.
buf_len
[
0
]
=
padpos
+
padsize
;
info
.
buf_addr
[
1
]
=
info
.
buf_addr
[
0
]
+
padpos
;
info
.
buf_len
[
1
]
=
skb
->
len
-
padpos
;
}
else
{
info
.
buf_addr
[
0
]
=
bf
->
bf_buf_addr
;
info
.
buf_len
[
0
]
=
skb
->
len
;
}
info
.
pkt_len
=
fi
->
framelen
;
info
.
keyix
=
fi
->
keyix
;
info
.
keytype
=
fi
->
keytype
;
...
...
@@ -1892,7 +1878,6 @@ int ath_tx_start(struct ieee80211_hw *hw, struct sk_buff *skb,
hdr
->
seq_ctrl
|=
cpu_to_le16
(
sc
->
tx
.
seq_no
);
}
if
(
!
(
sc
->
sc_ah
->
caps
.
hw_caps
&
ATH9K_HW_CAP_EDMA
))
{
/* Add the padding after the header if this is not already done */
padpos
=
ath9k_cmn_padpos
(
hdr
->
frame_control
);
padsize
=
padpos
&
3
;
...
...
@@ -1903,7 +1888,6 @@ int ath_tx_start(struct ieee80211_hw *hw, struct sk_buff *skb,
skb_push
(
skb
,
padsize
);
memmove
(
skb
->
data
,
skb
->
data
+
padsize
,
padpos
);
}
}
if
((
vif
&&
vif
->
type
!=
NL80211_IFTYPE_AP
&&
vif
->
type
!=
NL80211_IFTYPE_AP_VLAN
)
||
...
...
@@ -1952,7 +1936,6 @@ static void ath_tx_complete(struct ath_softc *sc, struct sk_buff *skb,
/* Frame was ACKed */
tx_info
->
flags
|=
IEEE80211_TX_STAT_ACK
;
if
(
!
(
sc
->
sc_ah
->
caps
.
hw_caps
&
ATH9K_HW_CAP_EDMA
))
{
padpos
=
ath9k_cmn_padpos
(
hdr
->
frame_control
);
padsize
=
padpos
&
3
;
if
(
padsize
&&
skb
->
len
>
padpos
+
padsize
)
{
...
...
@@ -1963,7 +1946,6 @@ static void ath_tx_complete(struct ath_softc *sc, struct sk_buff *skb,
memmove
(
skb
->
data
+
padsize
,
skb
->
data
,
padpos
);
skb_pull
(
skb
,
padsize
);
}
}
if
(
sc
->
ps_flags
&
PS_WAIT_FOR_TX_ACK
)
{
sc
->
ps_flags
&=
~
PS_WAIT_FOR_TX_ACK
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment