mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-07 13:43:51 +00:00
AFS: Part of afs_end_call() is identical to code elsewhere, so split it
Split afs_end_call() into two pieces, one of which is identical to code in afs_process_async_call(). Replace the latter with a call to the first part of afs_end_call(). Signed-off-by: Nathaniel Wesley Filardo <nwf@cs.jhu.edu> Signed-off-by: David Howells <dhowells@redhat.com>
This commit is contained in:
parent
6c67c7c38c
commit
6cf12869f5
@ -184,15 +184,24 @@ static void afs_free_call(struct afs_call *call)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* End a call
|
* End a call but do not free it
|
||||||
*/
|
*/
|
||||||
static void afs_end_call(struct afs_call *call)
|
static void afs_end_call_nofree(struct afs_call *call)
|
||||||
{
|
{
|
||||||
if (call->rxcall) {
|
if (call->rxcall) {
|
||||||
rxrpc_kernel_end_call(call->rxcall);
|
rxrpc_kernel_end_call(call->rxcall);
|
||||||
call->rxcall = NULL;
|
call->rxcall = NULL;
|
||||||
}
|
}
|
||||||
call->type->destructor(call);
|
if (call->type->destructor)
|
||||||
|
call->type->destructor(call);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* End a call and free it
|
||||||
|
*/
|
||||||
|
static void afs_end_call(struct afs_call *call)
|
||||||
|
{
|
||||||
|
afs_end_call_nofree(call);
|
||||||
afs_free_call(call);
|
afs_free_call(call);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -640,10 +649,7 @@ static void afs_process_async_call(struct work_struct *work)
|
|||||||
call->reply = NULL;
|
call->reply = NULL;
|
||||||
|
|
||||||
/* kill the call */
|
/* kill the call */
|
||||||
rxrpc_kernel_end_call(call->rxcall);
|
afs_end_call_nofree(call);
|
||||||
call->rxcall = NULL;
|
|
||||||
if (call->type->destructor)
|
|
||||||
call->type->destructor(call);
|
|
||||||
|
|
||||||
/* we can't just delete the call because the work item may be
|
/* we can't just delete the call because the work item may be
|
||||||
* queued */
|
* queued */
|
||||||
|
Loading…
Reference in New Issue
Block a user