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
4bc3e17c
Commit
4bc3e17c
authored
Oct 25, 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
fee9dee7
ddd68587
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
5 deletions
+8
-5
MAINTAINERS
MAINTAINERS
+5
-3
net/mac80211/ieee80211_sta.c
net/mac80211/ieee80211_sta.c
+3
-2
No files found.
MAINTAINERS
View file @
4bc3e17c
...
...
@@ -2449,13 +2449,15 @@ W: http://www.tazenda.demon.co.uk/phil/linux-hp
S: Maintained
MAC80211
P: Jiri Benc
M: jbenc@suse.cz
P: Michael Wu
M: flamingice@sourmilk.net
P: Johannes Berg
M: johannes@sipsolutions.net
P: Jiri Benc
M: jbenc@suse.cz
L: linux-wireless@vger.kernel.org
W: http://linuxwireless.org/
T: git kernel.org:/pub/scm/linux/kernel/git/
jbenc/mac80211
.git
T: git kernel.org:/pub/scm/linux/kernel/git/
linville/wireless-2.6
.git
S: Maintained
MACVLAN DRIVER
...
...
net/mac80211/ieee80211_sta.c
View file @
4bc3e17c
...
...
@@ -1184,7 +1184,7 @@ static void ieee80211_rx_mgmt_assoc_resp(struct net_device *dev,
printk
(
KERN_DEBUG
"%s: RX %sssocResp from %s (capab=0x%x "
"status=%d aid=%d)
\n
"
,
dev
->
name
,
reassoc
?
"Rea"
:
"A"
,
print_mac
(
mac
,
mgmt
->
sa
),
capab_info
,
status_code
,
aid
&
~
(
BIT
(
15
)
|
BIT
(
14
)));
capab_info
,
status_code
,
(
u16
)(
aid
&
~
(
BIT
(
15
)
|
BIT
(
14
)
)));
if
(
status_code
!=
WLAN_STATUS_SUCCESS
)
{
printk
(
KERN_DEBUG
"%s: AP denied association (code=%d)
\n
"
,
...
...
@@ -2096,7 +2096,8 @@ static int ieee80211_sta_match_ssid(struct ieee80211_if_sta *ifsta,
{
int
tmp
,
hidden_ssid
;
if
(
!
memcmp
(
ifsta
->
ssid
,
ssid
,
ssid_len
))
if
(
ssid_len
==
ifsta
->
ssid_len
&&
!
memcmp
(
ifsta
->
ssid
,
ssid
,
ssid_len
))
return
1
;
if
(
ifsta
->
flags
&
IEEE80211_STA_AUTO_BSSID_SEL
)
...
...
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