From: David Howells Date: Thu, 6 Oct 2016 07:11:50 +0000 (+0100) Subject: rxrpc: Add missing notification X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=94bc669efa3beb1f6b171f5a3225079bc457d4a2;p=linux-beck.git rxrpc: Add missing notification 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 --- 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; }