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
6ac62e4f
Commit
6ac62e4f
authored
Aug 11, 2002
by
Steven Whitehouse
Committed by
David S. Miller
Aug 11, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[DECNET]: Fix route device refcounting.
parent
e6737a9d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
net/decnet/af_decnet.c
net/decnet/af_decnet.c
+1
-1
net/decnet/dn_route.c
net/decnet/dn_route.c
+6
-0
No files found.
net/decnet/af_decnet.c
View file @
6ac62e4f
...
...
@@ -2238,7 +2238,7 @@ MODULE_PARM(addr, "2i");
MODULE_PARM_DESC
(
addr
,
"The DECnet address of this machine: area,node"
);
#endif
static
char
banner
[]
__initdata
=
KERN_INFO
"NET4: DECnet for Linux: V.2.4.
15-pre5s (C) 1995-2001
Linux DECnet Project Team
\n
"
;
static
char
banner
[]
__initdata
=
KERN_INFO
"NET4: DECnet for Linux: V.2.4.
20-pre1s (C) 1995-2002
Linux DECnet Project Team
\n
"
;
static
int
__init
decnet_init
(
void
)
{
...
...
net/decnet/dn_route.c
View file @
6ac62e4f
...
...
@@ -35,6 +35,8 @@
* are numbered!
* Steve Whitehouse : Added return-to-sender functions. Added
* backlog congestion level return codes.
* Steve Whitehouse : Fixed bug where routes were set up with
* no ref count on net devices.
*
*/
...
...
@@ -801,6 +803,8 @@ static int dn_route_output_slow(struct dst_entry **pprt, dn_address dst, dn_addr
rt
->
u
.
dst
.
neighbour
=
neigh
;
rt
->
u
.
dst
.
dev
=
neigh
?
neigh
->
dev
:
NULL
;
if
(
rt
->
u
.
dst
.
dev
)
dev_hold
(
rt
->
u
.
dst
.
dev
);
rt
->
u
.
dst
.
lastuse
=
jiffies
;
rt
->
u
.
dst
.
output
=
dn_output
;
rt
->
u
.
dst
.
input
=
dn_rt_bug
;
...
...
@@ -978,6 +982,8 @@ static int dn_route_input_slow(struct sk_buff *skb)
rt
->
u
.
dst
.
neighbour
=
neigh
;
rt
->
u
.
dst
.
dev
=
neigh
?
neigh
->
dev
:
NULL
;
if
(
rt
->
u
.
dst
.
dev
)
dev_hold
(
rt
->
u
.
dst
.
dev
);
rt
->
u
.
dst
.
lastuse
=
jiffies
;
rt
->
u
.
dst
.
output
=
dnrt_output
;
rt
->
u
.
dst
.
input
=
dnrt_input
;
...
...
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