Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
b4869889
Commit
b4869889
authored
Jul 01, 2012
by
David Miller
Committed by
David S. Miller
Jul 20, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ipv4: Remove 'rt_mark' from 'struct rtable'
Signed-off-by:
David S. Miller
<
davem@davemloft.net
>
parent
d6c0a4f6
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
10 deletions
+3
-10
include/net/route.h
include/net/route.h
+0
-1
net/ipv4/ipmr.c
net/ipv4/ipmr.c
+1
-1
net/ipv4/route.c
net/ipv4/route.c
+2
-7
net/ipv4/xfrm4_policy.c
net/ipv4/xfrm4_policy.c
+0
-1
No files found.
include/net/route.h
View file @
b4869889
...
...
@@ -52,7 +52,6 @@ struct rtable {
int
rt_route_iif
;
int
rt_iif
;
int
rt_oif
;
__u32
rt_mark
;
/* Info on neighbour */
__be32
rt_gateway
;
...
...
net/ipv4/ipmr.c
View file @
b4869889
...
...
@@ -1797,7 +1797,7 @@ static struct mr_table *ipmr_rt_fib_lookup(struct net *net, struct sk_buff *skb)
.
flowi4_tos
=
RT_TOS
(
iph
->
tos
),
.
flowi4_oif
=
rt
->
rt_oif
,
.
flowi4_iif
=
rt
->
rt_iif
,
.
flowi4_mark
=
rt
->
rt_
mark
,
.
flowi4_mark
=
skb
->
mark
,
};
struct
mr_table
*
mrt
;
int
err
;
...
...
net/ipv4/route.c
View file @
b4869889
...
...
@@ -1275,7 +1275,6 @@ static int ip_route_input_mc(struct sk_buff *skb, __be32 daddr, __be32 saddr,
rth
->
rt_route_iif
=
dev
->
ifindex
;
rth
->
rt_iif
=
dev
->
ifindex
;
rth
->
rt_oif
=
0
;
rth
->
rt_mark
=
skb
->
mark
;
rth
->
rt_pmtu
=
0
;
rth
->
rt_gateway
=
daddr
;
rth
->
fi
=
NULL
;
...
...
@@ -1395,7 +1394,6 @@ static int __mkroute_input(struct sk_buff *skb,
rth
->
rt_route_iif
=
in_dev
->
dev
->
ifindex
;
rth
->
rt_iif
=
in_dev
->
dev
->
ifindex
;
rth
->
rt_oif
=
0
;
rth
->
rt_mark
=
skb
->
mark
;
rth
->
rt_pmtu
=
0
;
rth
->
rt_gateway
=
daddr
;
rth
->
fi
=
NULL
;
...
...
@@ -1562,7 +1560,6 @@ out: return err;
rth
->
rt_route_iif
=
dev
->
ifindex
;
rth
->
rt_iif
=
dev
->
ifindex
;
rth
->
rt_oif
=
0
;
rth
->
rt_mark
=
skb
->
mark
;
rth
->
rt_pmtu
=
0
;
rth
->
rt_gateway
=
daddr
;
rth
->
fi
=
NULL
;
...
...
@@ -1714,7 +1711,6 @@ static struct rtable *__mkroute_output(const struct fib_result *res,
rth
->
rt_route_iif
=
0
;
rth
->
rt_iif
=
orig_oif
?
:
dev_out
->
ifindex
;
rth
->
rt_oif
=
orig_oif
;
rth
->
rt_mark
=
fl4
->
flowi4_mark
;
rth
->
rt_pmtu
=
0
;
rth
->
rt_gateway
=
fl4
->
daddr
;
rth
->
fi
=
NULL
;
...
...
@@ -1994,7 +1990,6 @@ struct dst_entry *ipv4_blackhole_route(struct net *net, struct dst_entry *dst_or
rt
->
rt_route_iif
=
ort
->
rt_route_iif
;
rt
->
rt_iif
=
ort
->
rt_iif
;
rt
->
rt_oif
=
ort
->
rt_oif
;
rt
->
rt_mark
=
ort
->
rt_mark
;
rt
->
rt_pmtu
=
ort
->
rt_pmtu
;
rt
->
rt_genid
=
rt_genid
(
net
);
...
...
@@ -2091,8 +2086,8 @@ static int rt_fill_info(struct net *net, __be32 src, struct flowi4 *fl4,
if
(
rtnetlink_put_metrics
(
skb
,
metrics
)
<
0
)
goto
nla_put_failure
;
if
(
rt
->
rt
_mark
&&
nla_put_be32
(
skb
,
RTA_MARK
,
rt
->
rt
_mark
))
if
(
fl4
->
flowi4
_mark
&&
nla_put_be32
(
skb
,
RTA_MARK
,
fl4
->
flowi4
_mark
))
goto
nla_put_failure
;
error
=
rt
->
dst
.
error
;
...
...
net/ipv4/xfrm4_policy.c
View file @
b4869889
...
...
@@ -82,7 +82,6 @@ static int xfrm4_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
xdst
->
u
.
rt
.
rt_route_iif
=
fl4
->
flowi4_iif
;
xdst
->
u
.
rt
.
rt_iif
=
fl4
->
flowi4_iif
;
xdst
->
u
.
rt
.
rt_oif
=
fl4
->
flowi4_oif
;
xdst
->
u
.
rt
.
rt_mark
=
fl4
->
flowi4_mark
;
xdst
->
u
.
dst
.
dev
=
dev
;
dev_hold
(
dev
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment