dect
/
linux-2.6
Archived
13
0
Fork 0

nfsd: remove unused argument to nfs4_has_reclaimed_state

Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
This commit is contained in:
Jeff Layton 2012-11-09 15:06:38 -05:00 committed by J. Bruce Fields
parent 698d8d875a
commit a0af710a65
3 changed files with 3 additions and 3 deletions

View File

@ -320,7 +320,7 @@ purge_old(struct dentry *parent, struct dentry *child)
{
int status;
if (nfs4_has_reclaimed_state(child->d_name.name, false))
if (nfs4_has_reclaimed_state(child->d_name.name))
return 0;
status = vfs_rmdir(parent->d_inode, child);

View File

@ -4484,7 +4484,7 @@ alloc_reclaim(void)
}
int
nfs4_has_reclaimed_state(const char *name, bool use_exchange_id)
nfs4_has_reclaimed_state(const char *name)
{
unsigned int strhashval = clientstr_hashval(name);
struct nfs4_client *clp;

View File

@ -482,7 +482,7 @@ extern void nfsd4_shutdown_callback(struct nfs4_client *);
extern void nfs4_put_delegation(struct nfs4_delegation *dp);
extern __be32 nfs4_make_rec_clidname(char *clidname, struct xdr_netobj *clname);
extern int nfs4_client_to_reclaim(const char *name);
extern int nfs4_has_reclaimed_state(const char *name, bool use_exchange_id);
extern int nfs4_has_reclaimed_state(const char *name);
extern void release_session_client(struct nfsd4_session *);
extern void nfsd4_purge_closed_stateid(struct nfs4_stateowner *);