Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
417c5233
K
Kernel
项目概览
openeuler
/
Kernel
大约 1 年 前同步成功
通知
5
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
417c5233
编写于
10月 13, 2009
作者:
D
David S. Miller
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'master' of
git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6
上级
91cd1756
c49de94a
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
11 addition
and
4 deletion
+11
-4
drivers/net/wireless/b43/xmit.c
drivers/net/wireless/b43/xmit.c
+3
-0
drivers/net/wireless/iwlwifi/iwl-agn.c
drivers/net/wireless/iwlwifi/iwl-agn.c
+1
-1
drivers/net/wireless/iwlwifi/iwl3945-base.c
drivers/net/wireless/iwlwifi/iwl3945-base.c
+1
-1
include/net/mac80211.h
include/net/mac80211.h
+2
-0
net/mac80211/ibss.c
net/mac80211/ibss.c
+2
-2
net/mac80211/rx.c
net/mac80211/rx.c
+2
-0
未找到文件。
drivers/net/wireless/b43/xmit.c
浏览文件 @
417c5233
...
...
@@ -690,7 +690,10 @@ void b43_rx(struct b43_wldev *dev, struct sk_buff *skb, const void *_rxhdr)
}
memcpy
(
IEEE80211_SKB_RXCB
(
skb
),
&
status
,
sizeof
(
status
));
local_bh_disable
();
ieee80211_rx
(
dev
->
wl
->
hw
,
skb
);
local_bh_enable
();
#if B43_DEBUG
dev
->
rx_count
++
;
...
...
drivers/net/wireless/iwlwifi/iwl-agn.c
浏览文件 @
417c5233
...
...
@@ -3105,8 +3105,8 @@ static int iwl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
out_pci_disable_device:
pci_disable_device
(
pdev
);
out_ieee80211_free_hw:
ieee80211_free_hw
(
priv
->
hw
);
iwl_free_traffic_mem
(
priv
);
ieee80211_free_hw
(
priv
->
hw
);
out:
return
err
;
}
...
...
drivers/net/wireless/iwlwifi/iwl3945-base.c
浏览文件 @
417c5233
...
...
@@ -4096,8 +4096,8 @@ static int iwl3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *e
pci_set_drvdata
(
pdev
,
NULL
);
pci_disable_device
(
pdev
);
out_ieee80211_free_hw:
ieee80211_free_hw
(
priv
->
hw
);
iwl_free_traffic_mem
(
priv
);
ieee80211_free_hw
(
priv
->
hw
);
out:
return
err
;
}
...
...
include/net/mac80211.h
浏览文件 @
417c5233
...
...
@@ -1669,6 +1669,8 @@ void ieee80211_restart_hw(struct ieee80211_hw *hw);
* to this function and ieee80211_rx_irqsafe() may not be mixed for a
* single hardware.
*
* Note that right now, this function must be called with softirqs disabled.
*
* @hw: the hardware this frame came in on
* @skb: the buffer to receive, owned by mac80211 after this call
*/
...
...
net/mac80211/ibss.c
浏览文件 @
417c5233
...
...
@@ -544,7 +544,7 @@ static void ieee80211_sta_find_ibss(struct ieee80211_sub_if_data *sdata)
"%pM
\n
"
,
bss
->
cbss
.
bssid
,
ifibss
->
bssid
);
#endif
/* CONFIG_MAC80211_IBSS_DEBUG */
if
(
bss
&&
memcmp
(
ifibss
->
bssid
,
bss
->
cbss
.
bssid
,
ETH_ALEN
))
{
if
(
bss
&&
!
memcmp
(
ifibss
->
bssid
,
bss
->
cbss
.
bssid
,
ETH_ALEN
))
{
printk
(
KERN_DEBUG
"%s: Selected IBSS BSSID %pM"
" based on configured SSID
\n
"
,
sdata
->
dev
->
name
,
bss
->
cbss
.
bssid
);
...
...
@@ -829,7 +829,7 @@ void ieee80211_ibss_notify_scan_completed(struct ieee80211_local *local)
if
(
!
sdata
->
u
.
ibss
.
ssid_len
)
continue
;
sdata
->
u
.
ibss
.
last_scan_completed
=
jiffies
;
ieee80211_sta_find_ibss
(
sdata
);
mod_timer
(
&
sdata
->
u
.
ibss
.
timer
,
0
);
}
mutex_unlock
(
&
local
->
iflist_mtx
);
}
...
...
net/mac80211/rx.c
浏览文件 @
417c5233
...
...
@@ -2453,6 +2453,8 @@ void ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb)
struct
ieee80211_supported_band
*
sband
;
struct
ieee80211_rx_status
*
status
=
IEEE80211_SKB_RXCB
(
skb
);
WARN_ON_ONCE
(
softirq_count
()
==
0
);
if
(
WARN_ON
(
status
->
band
<
0
||
status
->
band
>=
IEEE80211_NUM_BANDS
))
goto
drop
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录