Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
33ddcbbf
Commit
33ddcbbf
authored
Nov 11, 2005
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
parents
4d45cbac
9eb5c94e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
net/decnet/af_decnet.c
net/decnet/af_decnet.c
+7
-7
No files found.
net/decnet/af_decnet.c
View file @
33ddcbbf
...
@@ -1664,17 +1664,15 @@ static int dn_recvmsg(struct kiocb *iocb, struct socket *sock,
...
@@ -1664,17 +1664,15 @@ static int dn_recvmsg(struct kiocb *iocb, struct socket *sock,
goto
out
;
goto
out
;
}
}
rv
=
dn_check_state
(
sk
,
NULL
,
0
,
&
timeo
,
flags
);
if
(
rv
)
goto
out
;
if
(
sk
->
sk_shutdown
&
RCV_SHUTDOWN
)
{
if
(
sk
->
sk_shutdown
&
RCV_SHUTDOWN
)
{
if
(
!
(
flags
&
MSG_NOSIGNAL
))
rv
=
0
;
send_sig
(
SIGPIPE
,
current
,
0
);
rv
=
-
EPIPE
;
goto
out
;
goto
out
;
}
}
rv
=
dn_check_state
(
sk
,
NULL
,
0
,
&
timeo
,
flags
);
if
(
rv
)
goto
out
;
if
(
flags
&
~
(
MSG_PEEK
|
MSG_OOB
|
MSG_WAITALL
|
MSG_DONTWAIT
|
MSG_NOSIGNAL
))
{
if
(
flags
&
~
(
MSG_PEEK
|
MSG_OOB
|
MSG_WAITALL
|
MSG_DONTWAIT
|
MSG_NOSIGNAL
))
{
rv
=
-
EOPNOTSUPP
;
rv
=
-
EOPNOTSUPP
;
goto
out
;
goto
out
;
...
@@ -1928,6 +1926,8 @@ static int dn_sendmsg(struct kiocb *iocb, struct socket *sock,
...
@@ -1928,6 +1926,8 @@ static int dn_sendmsg(struct kiocb *iocb, struct socket *sock,
if
(
sk
->
sk_shutdown
&
SEND_SHUTDOWN
)
{
if
(
sk
->
sk_shutdown
&
SEND_SHUTDOWN
)
{
err
=
-
EPIPE
;
err
=
-
EPIPE
;
if
(
!
(
flags
&
MSG_NOSIGNAL
))
send_sig
(
SIGPIPE
,
current
,
0
);
goto
out_err
;
goto
out_err
;
}
}
...
...
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