nfs: make nfs4_drop_state_owner() static
nfs4_drop_state_owner() can now become static. Signed-off-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
parent
31f31db1a1
commit
1d2e88e73e
|
@ -206,7 +206,6 @@ struct rpc_cred *nfs4_get_renew_cred(struct nfs_client *clp);
|
||||||
|
|
||||||
extern struct nfs4_state_owner * nfs4_get_state_owner(struct nfs_server *, struct rpc_cred *);
|
extern struct nfs4_state_owner * nfs4_get_state_owner(struct nfs_server *, struct rpc_cred *);
|
||||||
extern void nfs4_put_state_owner(struct nfs4_state_owner *);
|
extern void nfs4_put_state_owner(struct nfs4_state_owner *);
|
||||||
extern void nfs4_drop_state_owner(struct nfs4_state_owner *);
|
|
||||||
extern struct nfs4_state * nfs4_get_open_state(struct inode *, struct nfs4_state_owner *);
|
extern struct nfs4_state * nfs4_get_open_state(struct inode *, struct nfs4_state_owner *);
|
||||||
extern void nfs4_put_open_state(struct nfs4_state *);
|
extern void nfs4_put_open_state(struct nfs4_state *);
|
||||||
extern void nfs4_close_state(struct path *, struct nfs4_state *, mode_t);
|
extern void nfs4_close_state(struct path *, struct nfs4_state *, mode_t);
|
||||||
|
|
|
@ -282,7 +282,7 @@ nfs4_alloc_state_owner(void)
|
||||||
return sp;
|
return sp;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
static void
|
||||||
nfs4_drop_state_owner(struct nfs4_state_owner *sp)
|
nfs4_drop_state_owner(struct nfs4_state_owner *sp)
|
||||||
{
|
{
|
||||||
if (!RB_EMPTY_NODE(&sp->so_client_node)) {
|
if (!RB_EMPTY_NODE(&sp->so_client_node)) {
|
||||||
|
|
Loading…
Reference in New Issue