rxrpc: Fold __rxrpc_unuse_local() into rxrpc_unuse_local()
Fold __rxrpc_unuse_local() into rxrpc_unuse_local() as the latter is now the only user of the former. Signed-off-by: David Howells <dhowells@redhat.com> cc: Marc Dionne <marc.dionne@auristor.com> cc: linux-afs@lists.infradead.org
This commit is contained in:
parent
5086d9a9df
commit
a2cf3264f3
2 changed files with 10 additions and 14 deletions
|
@ -1002,18 +1002,6 @@ void rxrpc_unuse_local(struct rxrpc_local *, enum rxrpc_local_trace);
|
||||||
void rxrpc_destroy_local(struct rxrpc_local *local);
|
void rxrpc_destroy_local(struct rxrpc_local *local);
|
||||||
void rxrpc_destroy_all_locals(struct rxrpc_net *);
|
void rxrpc_destroy_all_locals(struct rxrpc_net *);
|
||||||
|
|
||||||
static inline bool __rxrpc_unuse_local(struct rxrpc_local *local,
|
|
||||||
enum rxrpc_local_trace why)
|
|
||||||
{
|
|
||||||
unsigned int debug_id = local->debug_id;
|
|
||||||
int r, u;
|
|
||||||
|
|
||||||
r = refcount_read(&local->ref);
|
|
||||||
u = atomic_dec_return(&local->active_users);
|
|
||||||
trace_rxrpc_local(debug_id, why, r, u);
|
|
||||||
return u == 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline bool __rxrpc_use_local(struct rxrpc_local *local,
|
static inline bool __rxrpc_use_local(struct rxrpc_local *local,
|
||||||
enum rxrpc_local_trace why)
|
enum rxrpc_local_trace why)
|
||||||
{
|
{
|
||||||
|
|
|
@ -359,8 +359,16 @@ struct rxrpc_local *rxrpc_use_local(struct rxrpc_local *local,
|
||||||
*/
|
*/
|
||||||
void rxrpc_unuse_local(struct rxrpc_local *local, enum rxrpc_local_trace why)
|
void rxrpc_unuse_local(struct rxrpc_local *local, enum rxrpc_local_trace why)
|
||||||
{
|
{
|
||||||
if (local && __rxrpc_unuse_local(local, why))
|
unsigned int debug_id = local->debug_id;
|
||||||
kthread_stop(local->io_thread);
|
int r, u;
|
||||||
|
|
||||||
|
if (local) {
|
||||||
|
r = refcount_read(&local->ref);
|
||||||
|
u = atomic_dec_return(&local->active_users);
|
||||||
|
trace_rxrpc_local(debug_id, why, r, u);
|
||||||
|
if (u == 0)
|
||||||
|
kthread_stop(local->io_thread);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Reference in a new issue