NFSd: Mark nfs4_free_lockowner and nfs4_free_openowner as static functions
They do not need to be used outside fs/nfsd/nfs4state.c Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
This commit is contained in:
parent
6f226e2ab1
commit
50cc62317d
|
@ -645,6 +645,12 @@ static void unhash_lockowner(struct nfs4_lockowner *lo)
|
|||
}
|
||||
}
|
||||
|
||||
static void nfs4_free_lockowner(struct nfs4_lockowner *lo)
|
||||
{
|
||||
kfree(lo->lo_owner.so_owner.data);
|
||||
kmem_cache_free(lockowner_slab, lo);
|
||||
}
|
||||
|
||||
static void release_lockowner(struct nfs4_lockowner *lo)
|
||||
{
|
||||
unhash_lockowner(lo);
|
||||
|
@ -699,6 +705,12 @@ static void release_last_closed_stateid(struct nfs4_openowner *oo)
|
|||
}
|
||||
}
|
||||
|
||||
static void nfs4_free_openowner(struct nfs4_openowner *oo)
|
||||
{
|
||||
kfree(oo->oo_owner.so_owner.data);
|
||||
kmem_cache_free(openowner_slab, oo);
|
||||
}
|
||||
|
||||
static void release_openowner(struct nfs4_openowner *oo)
|
||||
{
|
||||
unhash_openowner(oo);
|
||||
|
@ -2553,18 +2565,6 @@ out_nomem:
|
|||
return -ENOMEM;
|
||||
}
|
||||
|
||||
void nfs4_free_openowner(struct nfs4_openowner *oo)
|
||||
{
|
||||
kfree(oo->oo_owner.so_owner.data);
|
||||
kmem_cache_free(openowner_slab, oo);
|
||||
}
|
||||
|
||||
void nfs4_free_lockowner(struct nfs4_lockowner *lo)
|
||||
{
|
||||
kfree(lo->lo_owner.so_owner.data);
|
||||
kmem_cache_free(lockowner_slab, lo);
|
||||
}
|
||||
|
||||
static void init_nfs4_replay(struct nfs4_replay *rp)
|
||||
{
|
||||
rp->rp_status = nfserr_serverfault;
|
||||
|
|
|
@ -463,8 +463,6 @@ extern void nfs4_release_reclaim(struct nfsd_net *);
|
|||
extern struct nfs4_client_reclaim *nfsd4_find_reclaim_client(const char *recdir,
|
||||
struct nfsd_net *nn);
|
||||
extern __be32 nfs4_check_open_reclaim(clientid_t *clid, bool sessions, struct nfsd_net *nn);
|
||||
extern void nfs4_free_openowner(struct nfs4_openowner *);
|
||||
extern void nfs4_free_lockowner(struct nfs4_lockowner *);
|
||||
extern int set_callback_cred(void);
|
||||
extern void nfsd4_init_callback(struct nfsd4_callback *);
|
||||
extern void nfsd4_probe_callback(struct nfs4_client *clp);
|
||||
|
|
Loading…
Reference in New Issue