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
df047696
Commit
df047696
authored
Nov 10, 2003
by
Hideaki Yoshifuji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[DECNET]: Normalize jiffies reported to userspace.
parent
ec004d58
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
net/decnet/dn_route.c
net/decnet/dn_route.c
+3
-2
No files found.
net/decnet/dn_route.c
View file @
df047696
...
...
@@ -77,6 +77,7 @@
#include <linux/string.h>
#include <linux/netfilter_decnet.h>
#include <linux/rcupdate.h>
#include <linux/times.h>
#include <asm/errno.h>
#include <net/neighbour.h>
#include <net/dst.h>
...
...
@@ -1508,11 +1509,11 @@ static int dn_rt_fill_info(struct sk_buff *skb, u32 pid, u32 seq, int event, int
RTA_PUT
(
skb
,
RTA_GATEWAY
,
2
,
&
rt
->
rt_gateway
);
if
(
rtnetlink_put_metrics
(
skb
,
rt
->
u
.
dst
.
metrics
)
<
0
)
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_clntref
=
atomic_read
(
&
rt
->
u
.
dst
.
__refcnt
);
if
(
rt
->
u
.
dst
.
expires
)
ci
.
rta_expires
=
rt
->
u
.
dst
.
expires
-
jiffies
;
ci
.
rta_expires
=
jiffies_to_clock_t
(
rt
->
u
.
dst
.
expires
-
jiffies
)
;
else
ci
.
rta_expires
=
0
;
ci
.
rta_error
=
rt
->
u
.
dst
.
error
;
...
...
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