Commit ca943217 authored by Trond Myklebust's avatar Trond Myklebust Committed by J. Bruce Fields

nfsd: Use the filehandle to look up the struct nfs4_file instead of inode

This makes more sense anyway since an inode pointer value can change
even when the filehandle doesn't.
Signed-off-by: default avatarTrond Myklebust <trond.myklebust@primarydata.com>
Signed-off-by: default avatarJeff Layton <jlayton@primarydata.com>
Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
parent e2cf80d7
...@@ -368,10 +368,22 @@ static unsigned int ownerstr_hashval(u32 clientid, struct xdr_netobj *ownername) ...@@ -368,10 +368,22 @@ static unsigned int ownerstr_hashval(u32 clientid, struct xdr_netobj *ownername)
#define FILE_HASH_BITS 8 #define FILE_HASH_BITS 8
#define FILE_HASH_SIZE (1 << FILE_HASH_BITS) #define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
static unsigned int file_hashval(struct inode *ino) static unsigned int nfsd_fh_hashval(struct knfsd_fh *fh)
{ {
/* XXX: why are we hashing on inode pointer, anyway? */ return jhash2(fh->fh_base.fh_pad, XDR_QUADLEN(fh->fh_size), 0);
return hash_ptr(ino, FILE_HASH_BITS); }
static unsigned int file_hashval(struct knfsd_fh *fh)
{
return nfsd_fh_hashval(fh) & (FILE_HASH_SIZE - 1);
}
static bool nfsd_fh_match(struct knfsd_fh *fh1, struct knfsd_fh *fh2)
{
return fh1->fh_size == fh2->fh_size &&
!memcmp(fh1->fh_base.fh_pad,
fh2->fh_base.fh_pad,
fh1->fh_size);
} }
static struct hlist_head file_hashtbl[FILE_HASH_SIZE]; static struct hlist_head file_hashtbl[FILE_HASH_SIZE];
...@@ -2836,7 +2848,7 @@ static struct nfs4_file *nfsd4_alloc_file(void) ...@@ -2836,7 +2848,7 @@ static struct nfs4_file *nfsd4_alloc_file(void)
static void nfsd4_init_file(struct nfs4_file *fp, struct inode *ino, static void nfsd4_init_file(struct nfs4_file *fp, struct inode *ino,
struct knfsd_fh *fh) struct knfsd_fh *fh)
{ {
unsigned int hashval = file_hashval(ino); unsigned int hashval = file_hashval(fh);
lockdep_assert_held(&state_lock); lockdep_assert_held(&state_lock);
...@@ -3023,15 +3035,15 @@ find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open, ...@@ -3023,15 +3035,15 @@ find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open,
/* search file_hashtbl[] for file */ /* search file_hashtbl[] for file */
static struct nfs4_file * static struct nfs4_file *
find_file_locked(struct inode *ino) find_file_locked(struct knfsd_fh *fh)
{ {
unsigned int hashval = file_hashval(ino); unsigned int hashval = file_hashval(fh);
struct nfs4_file *fp; struct nfs4_file *fp;
lockdep_assert_held(&state_lock); lockdep_assert_held(&state_lock);
hlist_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) { hlist_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
if (fp->fi_inode == ino) { if (nfsd_fh_match(&fp->fi_fhandle, fh)) {
get_nfs4_file(fp); get_nfs4_file(fp);
return fp; return fp;
} }
...@@ -3040,12 +3052,12 @@ find_file_locked(struct inode *ino) ...@@ -3040,12 +3052,12 @@ find_file_locked(struct inode *ino)
} }
static struct nfs4_file * static struct nfs4_file *
find_file(struct inode *ino) find_file(struct knfsd_fh *fh)
{ {
struct nfs4_file *fp; struct nfs4_file *fp;
spin_lock(&state_lock); spin_lock(&state_lock);
fp = find_file_locked(ino); fp = find_file_locked(fh);
spin_unlock(&state_lock); spin_unlock(&state_lock);
return fp; return fp;
} }
...@@ -3056,7 +3068,7 @@ find_or_add_file(struct inode *ino, struct nfs4_file *new, struct knfsd_fh *fh) ...@@ -3056,7 +3068,7 @@ find_or_add_file(struct inode *ino, struct nfs4_file *new, struct knfsd_fh *fh)
struct nfs4_file *fp; struct nfs4_file *fp;
spin_lock(&state_lock); spin_lock(&state_lock);
fp = find_file_locked(ino); fp = find_file_locked(fh);
if (fp == NULL) { if (fp == NULL) {
nfsd4_init_file(new, ino, fh); nfsd4_init_file(new, ino, fh);
fp = new; fp = new;
...@@ -3073,11 +3085,10 @@ find_or_add_file(struct inode *ino, struct nfs4_file *new, struct knfsd_fh *fh) ...@@ -3073,11 +3085,10 @@ find_or_add_file(struct inode *ino, struct nfs4_file *new, struct knfsd_fh *fh)
static __be32 static __be32
nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type) nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
{ {
struct inode *ino = current_fh->fh_dentry->d_inode;
struct nfs4_file *fp; struct nfs4_file *fp;
__be32 ret = nfs_ok; __be32 ret = nfs_ok;
fp = find_file(ino); fp = find_file(&current_fh->fh_handle);
if (!fp) if (!fp)
return ret; return ret;
/* Check for conflicting share reservations */ /* Check for conflicting share reservations */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment