Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
3677713b
K
Kernel
项目概览
openeuler
/
Kernel
接近 2 年 前同步成功
通知
8
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看板
提交
3677713b
编写于
3月 07, 2011
作者:
J
John W. Linville
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
wireless: add support for ethtool_ops->{get,set}_ringparam
Signed-off-by:
N
John W. Linville
<
linville@tuxdriver.com
>
上级
266af4c7
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
41 addition
and
0 deletion
+41
-0
include/net/cfg80211.h
include/net/cfg80211.h
+8
-0
net/wireless/ethtool.c
net/wireless/ethtool.c
+33
-0
未找到文件。
include/net/cfg80211.h
浏览文件 @
3677713b
...
...
@@ -1197,6 +1197,10 @@ struct cfg80211_pmksa {
* (also see nl80211.h @NL80211_ATTR_WIPHY_ANTENNA_TX).
*
* @get_antenna: Get current antenna configuration from device (tx_ant, rx_ant).
*
* @set_ringparam: Set tx and rx ring sizes.
*
* @get_ringparam: Get tx and rx ring current and maximum sizes.
*/
struct
cfg80211_ops
{
int
(
*
suspend
)(
struct
wiphy
*
wiphy
);
...
...
@@ -1364,6 +1368,10 @@ struct cfg80211_ops {
int
(
*
set_antenna
)(
struct
wiphy
*
wiphy
,
u32
tx_ant
,
u32
rx_ant
);
int
(
*
get_antenna
)(
struct
wiphy
*
wiphy
,
u32
*
tx_ant
,
u32
*
rx_ant
);
int
(
*
set_ringparam
)(
struct
wiphy
*
wiphy
,
u32
tx
,
u32
rx
);
void
(
*
get_ringparam
)(
struct
wiphy
*
wiphy
,
u32
*
tx
,
u32
*
tx_max
,
u32
*
rx
,
u32
*
rx_max
);
};
/*
...
...
net/wireless/ethtool.c
浏览文件 @
3677713b
#include <linux/utsname.h>
#include <net/cfg80211.h>
#include "core.h"
#include "ethtool.h"
static
void
cfg80211_get_drvinfo
(
struct
net_device
*
dev
,
...
...
@@ -37,9 +38,41 @@ static void cfg80211_get_regs(struct net_device *dev, struct ethtool_regs *regs,
regs
->
len
=
0
;
}
static
void
cfg80211_get_ringparam
(
struct
net_device
*
dev
,
struct
ethtool_ringparam
*
rp
)
{
struct
wireless_dev
*
wdev
=
dev
->
ieee80211_ptr
;
struct
cfg80211_registered_device
*
rdev
=
wiphy_to_dev
(
wdev
->
wiphy
);
memset
(
rp
,
0
,
sizeof
(
*
rp
));
if
(
rdev
->
ops
->
get_ringparam
)
rdev
->
ops
->
get_ringparam
(
wdev
->
wiphy
,
&
rp
->
tx_pending
,
&
rp
->
tx_max_pending
,
&
rp
->
rx_pending
,
&
rp
->
rx_max_pending
);
}
static
int
cfg80211_set_ringparam
(
struct
net_device
*
dev
,
struct
ethtool_ringparam
*
rp
)
{
struct
wireless_dev
*
wdev
=
dev
->
ieee80211_ptr
;
struct
cfg80211_registered_device
*
rdev
=
wiphy_to_dev
(
wdev
->
wiphy
);
if
(
rp
->
rx_mini_pending
!=
0
||
rp
->
rx_jumbo_pending
!=
0
)
return
-
EINVAL
;
if
(
rdev
->
ops
->
set_ringparam
)
return
rdev
->
ops
->
set_ringparam
(
wdev
->
wiphy
,
rp
->
tx_pending
,
rp
->
rx_pending
);
return
-
ENOTSUPP
;
}
const
struct
ethtool_ops
cfg80211_ethtool_ops
=
{
.
get_drvinfo
=
cfg80211_get_drvinfo
,
.
get_regs_len
=
cfg80211_get_regs_len
,
.
get_regs
=
cfg80211_get_regs
,
.
get_link
=
ethtool_op_get_link
,
.
get_ringparam
=
cfg80211_get_ringparam
,
.
set_ringparam
=
cfg80211_set_ringparam
,
};
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录