mirror of https://gitee.com/openkylin/linux.git
[PATCH] nfsd4: fix check_for_locks
Fix some bad logic. Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu> Signed-off-by: Neil Brown <neilb@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
04ef595484
commit
796dadfd02
|
@ -2989,9 +2989,10 @@ check_for_locks(struct file *filp, struct nfs4_stateowner *lowner)
|
||||||
|
|
||||||
lock_kernel();
|
lock_kernel();
|
||||||
for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
|
for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
|
||||||
if ((*flpp)->fl_owner == (fl_owner_t)lowner)
|
if ((*flpp)->fl_owner == (fl_owner_t)lowner) {
|
||||||
status = 1;
|
status = 1;
|
||||||
goto out;
|
goto out;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
out:
|
out:
|
||||||
unlock_kernel();
|
unlock_kernel();
|
||||||
|
|
Loading…
Reference in New Issue