From: Fabio Olive Leite Date: Sun, 12 Sep 2010 23:55:25 +0000 (-0400) Subject: Remove incorrect do_vfs_lock message X-Git-Tag: v2.6.36-rc5~36^2~6 X-Git-Url: https://bbs.cooldavid.org/git/?a=commitdiff_plain;h=b1bde04c6d9a120dec602cc8a70b8a7f21600883;p=net-next-2.6.git Remove incorrect do_vfs_lock message The do_vfs_lock function on fs/nfs/file.c is only called if NLM is not being used, via the -onolock mount option. Therefore it cannot really be "out of sync with lock manager" when the local locking function called returns an error, as there will be no corresponding call to the NLM. For details, simply check the if/else on do_setlk and do_unlk on fs/nfs/file.c. Signed-Off-By: Fabio Olive Leite Reviewed-by: Jeff Layton Signed-off-by: Trond Myklebust --- diff --git a/fs/nfs/file.c b/fs/nfs/file.c index eb51bd6201d..05bf3c0dc75 100644 --- a/fs/nfs/file.c +++ b/fs/nfs/file.c @@ -723,10 +723,6 @@ static int do_vfs_lock(struct file *file, struct file_lock *fl) default: BUG(); } - if (res < 0) - dprintk(KERN_WARNING "%s: VFS is out of sync with lock manager" - " - error %d!\n", - __func__, res); return res; }