Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
bef9cb58
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,发现更多精彩内容 >>
提交
bef9cb58
编写于
7月 28, 2010
作者:
J
John W. Linville
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
libertas_tf: add get_survey callback in order to get channel noise
Signed-off-by:
N
John W. Linville
<
linville@tuxdriver.com
>
上级
19434148
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
21 addition
and
0 deletion
+21
-0
drivers/net/wireless/libertas_tf/libertas_tf.h
drivers/net/wireless/libertas_tf/libertas_tf.h
+3
-0
drivers/net/wireless/libertas_tf/main.c
drivers/net/wireless/libertas_tf/main.c
+18
-0
未找到文件。
drivers/net/wireless/libertas_tf/libertas_tf.h
浏览文件 @
bef9cb58
...
...
@@ -253,6 +253,9 @@ struct lbtf_private {
u8
fw_ready
;
u8
surpriseremoved
;
struct
sk_buff_head
bc_ps_buf
;
/* Most recently reported noise in dBm */
s8
noise
;
};
/* 802.11-related definitions */
...
...
drivers/net/wireless/libertas_tf/main.c
浏览文件 @
bef9cb58
...
...
@@ -525,6 +525,22 @@ static void lbtf_op_bss_info_changed(struct ieee80211_hw *hw,
lbtf_deb_leave
(
LBTF_DEB_MACOPS
);
}
static
int
lbtf_op_get_survey
(
struct
ieee80211_hw
*
hw
,
int
idx
,
struct
survey_info
*
survey
)
{
struct
lbtf_private
*
priv
=
hw
->
priv
;
struct
ieee80211_conf
*
conf
=
&
hw
->
conf
;
if
(
idx
!=
0
)
return
-
ENOENT
;
survey
->
channel
=
conf
->
channel
;
survey
->
filled
=
SURVEY_INFO_NOISE_DBM
;
survey
->
noise
=
priv
->
noise
;
return
0
;
}
static
const
struct
ieee80211_ops
lbtf_ops
=
{
.
tx
=
lbtf_op_tx
,
.
start
=
lbtf_op_start
,
...
...
@@ -535,6 +551,7 @@ static const struct ieee80211_ops lbtf_ops = {
.
prepare_multicast
=
lbtf_op_prepare_multicast
,
.
configure_filter
=
lbtf_op_configure_filter
,
.
bss_info_changed
=
lbtf_op_bss_info_changed
,
.
get_survey
=
lbtf_op_get_survey
,
};
int
lbtf_rx
(
struct
lbtf_private
*
priv
,
struct
sk_buff
*
skb
)
...
...
@@ -555,6 +572,7 @@ int lbtf_rx(struct lbtf_private *priv, struct sk_buff *skb)
stats
.
freq
=
priv
->
cur_freq
;
stats
.
band
=
IEEE80211_BAND_2GHZ
;
stats
.
signal
=
prxpd
->
snr
;
priv
->
noise
=
prxpd
->
nf
;
/* Marvell rate index has a hole at value 4 */
if
(
prxpd
->
rx_rate
>
4
)
--
prxpd
->
rx_rate
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录