Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
8b96d22d
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
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看板
提交
8b96d22d
编写于
6月 11, 2012
作者:
D
David S. Miller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
inet: Use FIB table peer roots in routes.
Signed-off-by:
N
David S. Miller
<
davem@davemloft.net
>
上级
8e773277
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
14 addition
and
8 deletion
+14
-8
net/ipv4/route.c
net/ipv4/route.c
+6
-2
net/ipv6/route.c
net/ipv6/route.c
+8
-6
未找到文件。
net/ipv4/route.c
浏览文件 @
8b96d22d
...
...
@@ -2125,7 +2125,7 @@ static int __mkroute_input(struct sk_buff *skb,
rth
->
rt_gateway
=
daddr
;
rth
->
rt_spec_dst
=
spec_dst
;
rth
->
rt_peer_genid
=
0
;
rt_init_peer
(
rth
,
dev_net
(
rth
->
dst
.
dev
)
->
ipv4
.
peers
);
rt_init_peer
(
rth
,
&
res
->
table
->
tb_
peers
);
rth
->
fi
=
NULL
;
rth
->
dst
.
input
=
ip_forward
;
...
...
@@ -2512,7 +2512,9 @@ static struct rtable *__mkroute_output(const struct fib_result *res,
rth
->
rt_gateway
=
fl4
->
daddr
;
rth
->
rt_spec_dst
=
fl4
->
saddr
;
rth
->
rt_peer_genid
=
0
;
rt_init_peer
(
rth
,
dev_net
(
dev_out
)
->
ipv4
.
peers
);
rt_init_peer
(
rth
,
(
res
->
table
?
&
res
->
table
->
tb_peers
:
dev_net
(
dev_out
)
->
ipv4
.
peers
));
rth
->
fi
=
NULL
;
RT_CACHE_STAT_INC
(
out_slow_tot
);
...
...
@@ -2561,6 +2563,7 @@ static struct rtable *ip_route_output_slow(struct net *net, struct flowi4 *fl4)
int
orig_oif
;
res
.
fi
=
NULL
;
res
.
table
=
NULL
;
#ifdef CONFIG_IP_MULTIPLE_TABLES
res
.
r
=
NULL
;
#endif
...
...
@@ -2666,6 +2669,7 @@ static struct rtable *ip_route_output_slow(struct net *net, struct flowi4 *fl4)
if
(
fib_lookup
(
net
,
fl4
,
&
res
))
{
res
.
fi
=
NULL
;
res
.
table
=
NULL
;
if
(
fl4
->
flowi4_oif
)
{
/* Apparently, routing tables are wrong. Assume,
that the destination is on link.
...
...
net/ipv6/route.c
浏览文件 @
8b96d22d
...
...
@@ -260,7 +260,8 @@ static struct rt6_info ip6_blk_hole_entry_template = {
/* allocate dst with ip6_dst_ops */
static
inline
struct
rt6_info
*
ip6_dst_alloc
(
struct
net
*
net
,
struct
net_device
*
dev
,
int
flags
)
int
flags
,
struct
fib6_table
*
table
)
{
struct
rt6_info
*
rt
=
dst_alloc
(
&
net
->
ipv6
.
ip6_dst_ops
,
dev
,
0
,
0
,
flags
);
...
...
@@ -268,7 +269,7 @@ static inline struct rt6_info *ip6_dst_alloc(struct net *net,
if
(
rt
)
{
memset
(
&
rt
->
rt6i_table
,
0
,
sizeof
(
*
rt
)
-
sizeof
(
struct
dst_entry
));
rt6_init_peer
(
rt
,
net
->
ipv6
.
peers
);
rt6_init_peer
(
rt
,
table
?
&
table
->
tb6_peers
:
net
->
ipv6
.
peers
);
}
return
rt
;
}
...
...
@@ -1114,7 +1115,7 @@ struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
if
(
unlikely
(
!
idev
))
return
ERR_PTR
(
-
ENODEV
);
rt
=
ip6_dst_alloc
(
net
,
dev
,
0
);
rt
=
ip6_dst_alloc
(
net
,
dev
,
0
,
NULL
);
if
(
unlikely
(
!
rt
))
{
in6_dev_put
(
idev
);
dst
=
ERR_PTR
(
-
ENOMEM
);
...
...
@@ -1296,7 +1297,7 @@ int ip6_route_add(struct fib6_config *cfg)
if
(
!
table
)
goto
out
;
rt
=
ip6_dst_alloc
(
net
,
NULL
,
DST_NOCOUNT
);
rt
=
ip6_dst_alloc
(
net
,
NULL
,
DST_NOCOUNT
,
table
);
if
(
!
rt
)
{
err
=
-
ENOMEM
;
...
...
@@ -1818,7 +1819,8 @@ static struct rt6_info *ip6_rt_copy(struct rt6_info *ort,
const
struct
in6_addr
*
dest
)
{
struct
net
*
net
=
dev_net
(
ort
->
dst
.
dev
);
struct
rt6_info
*
rt
=
ip6_dst_alloc
(
net
,
ort
->
dst
.
dev
,
0
);
struct
rt6_info
*
rt
=
ip6_dst_alloc
(
net
,
ort
->
dst
.
dev
,
0
,
ort
->
rt6i_table
);
if
(
rt
)
{
rt
->
dst
.
input
=
ort
->
dst
.
input
;
...
...
@@ -2102,7 +2104,7 @@ struct rt6_info *addrconf_dst_alloc(struct inet6_dev *idev,
bool
anycast
)
{
struct
net
*
net
=
dev_net
(
idev
->
dev
);
struct
rt6_info
*
rt
=
ip6_dst_alloc
(
net
,
net
->
loopback_dev
,
0
);
struct
rt6_info
*
rt
=
ip6_dst_alloc
(
net
,
net
->
loopback_dev
,
0
,
NULL
);
int
err
;
if
(
!
rt
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录