diff options
Diffstat (limited to 'fs/nfsd/nfs4state.c')
-rw-r--r-- | fs/nfsd/nfs4state.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c index 46249886ea86..e4a4c87ec8c6 100644 --- a/fs/nfsd/nfs4state.c +++ b/fs/nfsd/nfs4state.c | |||
@@ -195,6 +195,8 @@ alloc_init_deleg(struct nfs4_client *clp, struct nfs4_stateid *stp, struct svc_f | |||
195 | struct nfs4_callback *cb = &stp->st_stateowner->so_client->cl_callback; | 195 | struct nfs4_callback *cb = &stp->st_stateowner->so_client->cl_callback; |
196 | 196 | ||
197 | dprintk("NFSD alloc_init_deleg\n"); | 197 | dprintk("NFSD alloc_init_deleg\n"); |
198 | if (fp->fi_had_conflict) | ||
199 | return NULL; | ||
198 | if (num_delegations > max_delegations) | 200 | if (num_delegations > max_delegations) |
199 | return NULL; | 201 | return NULL; |
200 | dp = kmem_cache_alloc(deleg_slab, GFP_KERNEL); | 202 | dp = kmem_cache_alloc(deleg_slab, GFP_KERNEL); |
@@ -1002,6 +1004,7 @@ alloc_init_file(struct inode *ino) | |||
1002 | list_add(&fp->fi_hash, &file_hashtbl[hashval]); | 1004 | list_add(&fp->fi_hash, &file_hashtbl[hashval]); |
1003 | fp->fi_inode = igrab(ino); | 1005 | fp->fi_inode = igrab(ino); |
1004 | fp->fi_id = current_fileid++; | 1006 | fp->fi_id = current_fileid++; |
1007 | fp->fi_had_conflict = false; | ||
1005 | return fp; | 1008 | return fp; |
1006 | } | 1009 | } |
1007 | return NULL; | 1010 | return NULL; |
@@ -1328,6 +1331,7 @@ do_recall(void *__dp) | |||
1328 | { | 1331 | { |
1329 | struct nfs4_delegation *dp = __dp; | 1332 | struct nfs4_delegation *dp = __dp; |
1330 | 1333 | ||
1334 | dp->dl_file->fi_had_conflict = true; | ||
1331 | nfsd4_cb_recall(dp); | 1335 | nfsd4_cb_recall(dp); |
1332 | return 0; | 1336 | return 0; |
1333 | } | 1337 | } |