Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
b325fddb
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看板
提交
b325fddb
编写于
2月 26, 2009
作者:
S
Stephen Hemminger
提交者:
David S. Miller
3月 03, 2009
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ipv6: Fix sysctl unregistration deadlock
Signed-off-by:
N
David S. Miller
<
davem@davemloft.net
>
上级
5a5990d3
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
8 addition
and
6 deletion
+8
-6
net/ipv6/addrconf.c
net/ipv6/addrconf.c
+8
-6
未找到文件。
net/ipv6/addrconf.c
浏览文件 @
b325fddb
...
...
@@ -493,15 +493,17 @@ static void addrconf_forward_change(struct net *net, __s32 newf)
read_unlock
(
&
dev_base_lock
);
}
static
void
addrconf_fixup_forwarding
(
struct
ctl_table
*
table
,
int
*
p
,
int
old
)
static
int
addrconf_fixup_forwarding
(
struct
ctl_table
*
table
,
int
*
p
,
int
old
)
{
struct
net
*
net
;
net
=
(
struct
net
*
)
table
->
extra2
;
if
(
p
==
&
net
->
ipv6
.
devconf_dflt
->
forwarding
)
return
;
return
0
;
if
(
!
rtnl_trylock
())
return
-
ERESTARTSYS
;
rtnl_lock
();
if
(
p
==
&
net
->
ipv6
.
devconf_all
->
forwarding
)
{
__s32
newf
=
net
->
ipv6
.
devconf_all
->
forwarding
;
net
->
ipv6
.
devconf_dflt
->
forwarding
=
newf
;
...
...
@@ -512,6 +514,7 @@ static void addrconf_fixup_forwarding(struct ctl_table *table, int *p, int old)
if
(
*
p
)
rt6_purge_dflt_routers
(
net
);
return
1
;
}
#endif
...
...
@@ -3983,7 +3986,7 @@ int addrconf_sysctl_forward(ctl_table *ctl, int write, struct file * filp,
ret
=
proc_dointvec
(
ctl
,
write
,
filp
,
buffer
,
lenp
,
ppos
);
if
(
write
)
addrconf_fixup_forwarding
(
ctl
,
valp
,
val
);
ret
=
addrconf_fixup_forwarding
(
ctl
,
valp
,
val
);
return
ret
;
}
...
...
@@ -4019,8 +4022,7 @@ static int addrconf_sysctl_forward_strategy(ctl_table *table,
}
*
valp
=
new
;
addrconf_fixup_forwarding
(
table
,
valp
,
val
);
return
1
;
return
addrconf_fixup_forwarding
(
table
,
valp
,
val
);
}
static
struct
addrconf_sysctl_table
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录