projects
/
platform
/
kernel
/
linux-amlogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d7833d0
)
rxrpc: Add missing notification
author
David Howells
<dhowells@redhat.com>
Thu, 6 Oct 2016 07:11:50 +0000
(08:11 +0100)
committer
David Howells
<dhowells@redhat.com>
Thu, 6 Oct 2016 07:11:50 +0000
(08:11 +0100)
The call's background processor work item needs to notify the socket when
it completes a call so that recvmsg() or the AFS fs can deal with it.
Without this, call expiry isn't handled.
Signed-off-by: David Howells <dhowells@redhat.com>
net/rxrpc/call_event.c
patch
|
blob
|
history
diff --git
a/net/rxrpc/call_event.c
b/net/rxrpc/call_event.c
index
e2a987f
..
0f91d32
100644
(file)
--- a/
net/rxrpc/call_event.c
+++ b/
net/rxrpc/call_event.c
@@
-372,6
+372,7
@@
recheck_state:
if (call->state == RXRPC_CALL_COMPLETE) {
del_timer_sync(&call->timer);
+ rxrpc_notify_socket(call);
goto out_put;
}