Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
433dc9b3
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 3 年多
通知
13
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
433dc9b3
编写于
11月 14, 2013
作者:
B
Ben Hutchings
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
sfc: Implement the SIOCGHWTSTAMP ioctl
Signed-off-by:
N
Ben Hutchings
<
bhutchings@solarflare.com
>
上级
fd468c74
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
15 addition
and
3 deletion
+15
-3
drivers/net/ethernet/sfc/efx.c
drivers/net/ethernet/sfc/efx.c
+3
-1
drivers/net/ethernet/sfc/nic.h
drivers/net/ethernet/sfc/nic.h
+2
-1
drivers/net/ethernet/sfc/ptp.c
drivers/net/ethernet/sfc/ptp.c
+10
-1
未找到文件。
drivers/net/ethernet/sfc/efx.c
浏览文件 @
433dc9b3
...
...
@@ -1857,7 +1857,9 @@ static int efx_ioctl(struct net_device *net_dev, struct ifreq *ifr, int cmd)
struct
mii_ioctl_data
*
data
=
if_mii
(
ifr
);
if
(
cmd
==
SIOCSHWTSTAMP
)
return
efx_ptp_ioctl
(
efx
,
ifr
,
cmd
);
return
efx_ptp_set_ts_config
(
efx
,
ifr
);
if
(
cmd
==
SIOCGHWTSTAMP
)
return
efx_ptp_get_ts_config
(
efx
,
ifr
);
/* Convert phy_id from older PRTAD/DEVAD format */
if
((
cmd
==
SIOCGMIIREG
||
cmd
==
SIOCSMIIREG
)
&&
...
...
drivers/net/ethernet/sfc/nic.h
浏览文件 @
433dc9b3
...
...
@@ -555,7 +555,8 @@ int efx_sriov_set_vf_spoofchk(struct net_device *net_dev, int vf,
struct
ethtool_ts_info
;
void
efx_ptp_probe
(
struct
efx_nic
*
efx
);
int
efx_ptp_ioctl
(
struct
efx_nic
*
efx
,
struct
ifreq
*
ifr
,
int
cmd
);
int
efx_ptp_set_ts_config
(
struct
efx_nic
*
efx
,
struct
ifreq
*
ifr
);
int
efx_ptp_get_ts_config
(
struct
efx_nic
*
efx
,
struct
ifreq
*
ifr
);
void
efx_ptp_get_ts_info
(
struct
efx_nic
*
efx
,
struct
ethtool_ts_info
*
ts_info
);
bool
efx_ptp_is_ptp_tx
(
struct
efx_nic
*
efx
,
struct
sk_buff
*
skb
);
int
efx_ptp_tx
(
struct
efx_nic
*
efx
,
struct
sk_buff
*
skb
);
...
...
drivers/net/ethernet/sfc/ptp.c
浏览文件 @
433dc9b3
...
...
@@ -1231,7 +1231,7 @@ void efx_ptp_get_ts_info(struct efx_nic *efx, struct ethtool_ts_info *ts_info)
1
<<
HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ
);
}
int
efx_ptp_
ioctl
(
struct
efx_nic
*
efx
,
struct
ifreq
*
ifr
,
int
cmd
)
int
efx_ptp_
set_ts_config
(
struct
efx_nic
*
efx
,
struct
ifreq
*
ifr
)
{
struct
hwtstamp_config
config
;
int
rc
;
...
...
@@ -1251,6 +1251,15 @@ int efx_ptp_ioctl(struct efx_nic *efx, struct ifreq *ifr, int cmd)
?
-
EFAULT
:
0
;
}
int
efx_ptp_get_ts_config
(
struct
efx_nic
*
efx
,
struct
ifreq
*
ifr
)
{
if
(
!
efx
->
ptp_data
)
return
-
EOPNOTSUPP
;
return
copy_to_user
(
ifr
->
ifr_data
,
&
efx
->
ptp_data
->
config
,
sizeof
(
efx
->
ptp_data
->
config
))
?
-
EFAULT
:
0
;
}
static
void
ptp_event_failure
(
struct
efx_nic
*
efx
,
int
expected_frag_len
)
{
struct
efx_ptp_data
*
ptp
=
efx
->
ptp_data
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录