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
Kirill Smelkov
linux
Commits
c380a1fd
Commit
c380a1fd
authored
Oct 10, 2013
by
John W. Linville
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'for-john' of
git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211
parents
d107babc
22c4ceed
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
2 deletions
+8
-2
net/mac80211/cfg.c
net/mac80211/cfg.c
+1
-1
net/mac80211/offchannel.c
net/mac80211/offchannel.c
+2
-0
net/mac80211/status.c
net/mac80211/status.c
+3
-0
net/mac80211/tx.c
net/mac80211/tx.c
+2
-1
No files found.
net/mac80211/cfg.c
View file @
c380a1fd
...
...
@@ -3518,7 +3518,7 @@ static int ieee80211_probe_client(struct wiphy *wiphy, struct net_device *dev,
return
-
EINVAL
;
}
band
=
chanctx_conf
->
def
.
chan
->
band
;
sta
=
sta_info_get
(
sdata
,
peer
);
sta
=
sta_info_get
_bss
(
sdata
,
peer
);
if
(
sta
)
{
qos
=
test_sta_flag
(
sta
,
WLAN_STA_WME
);
}
else
{
...
...
net/mac80211/offchannel.c
View file @
c380a1fd
...
...
@@ -394,6 +394,8 @@ void ieee80211_sw_roc_work(struct work_struct *work)
if
(
started
)
ieee80211_start_next_roc
(
local
);
else
if
(
list_empty
(
&
local
->
roc_list
))
ieee80211_run_deferred_scan
(
local
);
}
out_unlock:
...
...
net/mac80211/status.c
View file @
c380a1fd
...
...
@@ -180,6 +180,9 @@ static void ieee80211_frame_acked(struct sta_info *sta, struct sk_buff *skb)
struct
ieee80211_local
*
local
=
sta
->
local
;
struct
ieee80211_sub_if_data
*
sdata
=
sta
->
sdata
;
if
(
local
->
hw
.
flags
&
IEEE80211_HW_REPORTS_TX_ACK_STATUS
)
sta
->
last_rx
=
jiffies
;
if
(
ieee80211_is_data_qos
(
mgmt
->
frame_control
))
{
struct
ieee80211_hdr
*
hdr
=
(
void
*
)
skb
->
data
;
u8
*
qc
=
ieee80211_get_qos_ctl
(
hdr
);
...
...
net/mac80211/tx.c
View file @
c380a1fd
...
...
@@ -1120,7 +1120,8 @@ ieee80211_tx_prepare(struct ieee80211_sub_if_data *sdata,
tx
->
sta
=
rcu_dereference
(
sdata
->
u
.
vlan
.
sta
);
if
(
!
tx
->
sta
&&
sdata
->
dev
->
ieee80211_ptr
->
use_4addr
)
return
TX_DROP
;
}
else
if
(
info
->
flags
&
IEEE80211_TX_CTL_INJECTED
||
}
else
if
(
info
->
flags
&
(
IEEE80211_TX_CTL_INJECTED
|
IEEE80211_TX_INTFL_NL80211_FRAME_TX
)
||
tx
->
sdata
->
control_port_protocol
==
tx
->
skb
->
protocol
)
{
tx
->
sta
=
sta_info_get_bss
(
sdata
,
hdr
->
addr1
);
}
...
...
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