Skip to content

Commit

Permalink
nfsd: make find/get/put file available outside nfs4state.c
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Hellwig <hch@lst.de>
  • Loading branch information
Christoph Hellwig committed Feb 2, 2015
1 parent cd61c52 commit e6ba76e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
10 changes: 2 additions & 8 deletions fs/nfsd/nfs4state.c
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ static void nfsd4_free_file_rcu(struct rcu_head *rcu)
kmem_cache_free(file_slab, fp);
}

static inline void
void
put_nfs4_file(struct nfs4_file *fi)
{
might_lock(&state_lock);
Expand All @@ -285,12 +285,6 @@ put_nfs4_file(struct nfs4_file *fi)
}
}

static inline void
get_nfs4_file(struct nfs4_file *fi)
{
atomic_inc(&fi->fi_ref);
}

static struct file *
__nfs4_get_fd(struct nfs4_file *f, int oflag)
{
Expand Down Expand Up @@ -3295,7 +3289,7 @@ find_file_locked(struct knfsd_fh *fh, unsigned int hashval)
return NULL;
}

static struct nfs4_file *
struct nfs4_file *
find_file(struct knfsd_fh *fh)
{
struct nfs4_file *fp;
Expand Down
7 changes: 7 additions & 0 deletions fs/nfsd/state.h
Original file line number Diff line number Diff line change
Expand Up @@ -573,6 +573,13 @@ extern struct nfs4_client_reclaim *nfs4_client_to_reclaim(const char *name,
struct nfsd_net *nn);
extern bool nfs4_has_reclaimed_state(const char *name, struct nfsd_net *nn);

struct nfs4_file *find_file(struct knfsd_fh *fh);
void put_nfs4_file(struct nfs4_file *fi);
static inline void get_nfs4_file(struct nfs4_file *fi)
{
atomic_inc(&fi->fi_ref);
}

/* grace period management */
void nfsd4_end_grace(struct nfsd_net *nn);

Expand Down

0 comments on commit e6ba76e

Please sign in to comment.