Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
4bc3e17c
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
4bc3e17c
编写于
10月 25, 2007
作者:
D
David S. Miller
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'fixes-davem' of master.kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6
上级
fee9dee7
ddd68587
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
8 addition
and
5 deletion
+8
-5
MAINTAINERS
MAINTAINERS
+5
-3
net/mac80211/ieee80211_sta.c
net/mac80211/ieee80211_sta.c
+3
-2
未找到文件。
MAINTAINERS
浏览文件 @
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
浏览文件 @
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
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录