Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1496555 > unrolled thread

[PATCH net 09/13] rxrpc: Add missing notification

Started byDavid Howells <dhowells@redhat.com>
First post2016-10-06 12:10 +0200
Last post2016-10-06 12:10 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH net 09/13] rxrpc: Add missing notification David Howells <dhowells@redhat.com> - 2016-10-06 12:10 +0200

#1496555 — [PATCH net 09/13] rxrpc: Add missing notification

FromDavid Howells <dhowells@redhat.com>
Date2016-10-06 12:10 +0200
Subject[PATCH net 09/13] rxrpc: Add missing notification
Message-ID<spdMJ-79a-11@gated-at.bofh.it>
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 |    1 +
 1 file changed, 1 insertion(+)

diff --git a/net/rxrpc/call_event.c b/net/rxrpc/call_event.c
index e2a987fd31ce..0f91d329e910 100644
--- 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;
 	}
 

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web