Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
cd8d60f2
Commit
cd8d60f2
authored
Aug 14, 2007
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fixes-davem' of master.kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6
parents
16f3051b
b9bf1e60
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
net/mac80211/ieee80211.c
net/mac80211/ieee80211.c
+0
-1
net/mac80211/ieee80211_sta.c
net/mac80211/ieee80211_sta.c
+5
-1
No files found.
net/mac80211/ieee80211.c
View file @
cd8d60f2
...
...
@@ -4678,7 +4678,6 @@ void ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb,
memset
(
skb
->
cb
,
0
,
sizeof
(
skb
->
cb
));
netif_rx
(
skb
);
skb
=
skb2
;
break
;
}
}
out:
...
...
net/mac80211/ieee80211_sta.c
View file @
cd8d60f2
...
...
@@ -2154,7 +2154,11 @@ static int ieee80211_sta_config_auth(struct net_device *dev,
return
0
;
}
else
{
if
(
ifsta
->
state
!=
IEEE80211_AUTHENTICATE
)
{
ieee80211_sta_start_scan
(
dev
,
NULL
,
0
);
if
(
ifsta
->
auto_ssid_sel
)
ieee80211_sta_start_scan
(
dev
,
NULL
,
0
);
else
ieee80211_sta_start_scan
(
dev
,
ifsta
->
ssid
,
ifsta
->
ssid_len
);
ifsta
->
state
=
IEEE80211_AUTHENTICATE
;
set_bit
(
IEEE80211_STA_REQ_AUTH
,
&
ifsta
->
request
);
}
else
...
...
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