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
592f6469
Commit
592f6469
authored
Jul 25, 2003
by
Neil Brown
Committed by
Linus Torvalds
Jul 25, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] Only set ->sk_reuse for tcp sockets, not udp
It doesn't really make sense for udp.
parent
613d9c3b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
net/sunrpc/svcsock.c
net/sunrpc/svcsock.c
+2
-1
No files found.
net/sunrpc/svcsock.c
View file @
592f6469
...
...
@@ -1377,7 +1377,8 @@ svc_create_socket(struct svc_serv *serv, int protocol, struct sockaddr_in *sin)
return
error
;
if
(
sin
!=
NULL
)
{
sock
->
sk
->
sk_reuse
=
1
;
/* allow address reuse */
if
(
type
==
SOCK_STREAM
)
sock
->
sk
->
sk_reuse
=
1
;
/* allow address reuse */
error
=
sock
->
ops
->
bind
(
sock
,
(
struct
sockaddr
*
)
sin
,
sizeof
(
*
sin
));
if
(
error
<
0
)
...
...
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