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
nexedi
linux
Commits
165cb14c
Commit
165cb14c
authored
Nov 10, 2003
by
Hideaki Yoshifuji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[IPV4/IPV6]: More userland jiffies reporting fixes for routing.
parent
df047696
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
net/ipv4/route.c
net/ipv4/route.c
+1
-1
net/ipv6/route.c
net/ipv6/route.c
+1
-1
No files found.
net/ipv4/route.c
View file @
165cb14c
...
@@ -2306,7 +2306,7 @@ static int rt_fill_info(struct sk_buff *skb, u32 pid, u32 seq, int event,
...
@@ -2306,7 +2306,7 @@ static int rt_fill_info(struct sk_buff *skb, u32 pid, u32 seq, int event,
RTA_PUT
(
skb
,
RTA_GATEWAY
,
4
,
&
rt
->
rt_gateway
);
RTA_PUT
(
skb
,
RTA_GATEWAY
,
4
,
&
rt
->
rt_gateway
);
if
(
rtnetlink_put_metrics
(
skb
,
rt
->
u
.
dst
.
metrics
)
<
0
)
if
(
rtnetlink_put_metrics
(
skb
,
rt
->
u
.
dst
.
metrics
)
<
0
)
goto
rtattr_failure
;
goto
rtattr_failure
;
ci
.
rta_lastuse
=
jiffies
-
rt
->
u
.
dst
.
lastuse
;
ci
.
rta_lastuse
=
jiffies
_to_clock_t
(
jiffies
-
rt
->
u
.
dst
.
lastuse
)
;
ci
.
rta_used
=
rt
->
u
.
dst
.
__use
;
ci
.
rta_used
=
rt
->
u
.
dst
.
__use
;
ci
.
rta_clntref
=
atomic_read
(
&
rt
->
u
.
dst
.
__refcnt
);
ci
.
rta_clntref
=
atomic_read
(
&
rt
->
u
.
dst
.
__refcnt
);
if
(
rt
->
u
.
dst
.
expires
)
if
(
rt
->
u
.
dst
.
expires
)
...
...
net/ipv6/route.c
View file @
165cb14c
...
@@ -1534,7 +1534,7 @@ static int rt6_fill_node(struct sk_buff *skb, struct rt6_info *rt,
...
@@ -1534,7 +1534,7 @@ static int rt6_fill_node(struct sk_buff *skb, struct rt6_info *rt,
if
(
rt
->
u
.
dst
.
dev
)
if
(
rt
->
u
.
dst
.
dev
)
RTA_PUT
(
skb
,
RTA_OIF
,
sizeof
(
int
),
&
rt
->
rt6i_dev
->
ifindex
);
RTA_PUT
(
skb
,
RTA_OIF
,
sizeof
(
int
),
&
rt
->
rt6i_dev
->
ifindex
);
RTA_PUT
(
skb
,
RTA_PRIORITY
,
4
,
&
rt
->
rt6i_metric
);
RTA_PUT
(
skb
,
RTA_PRIORITY
,
4
,
&
rt
->
rt6i_metric
);
ci
.
rta_lastuse
=
jiffies
-
rt
->
u
.
dst
.
lastuse
;
ci
.
rta_lastuse
=
jiffies
_to_clock_t
(
jiffies
-
rt
->
u
.
dst
.
lastuse
)
;
if
(
rt
->
rt6i_expires
)
if
(
rt
->
rt6i_expires
)
ci
.
rta_expires
=
jiffies_to_clock_t
(
rt
->
rt6i_expires
-
jiffies
);
ci
.
rta_expires
=
jiffies_to_clock_t
(
rt
->
rt6i_expires
-
jiffies
);
else
else
...
...
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