aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorKirill A. Shutemov <kirill.shutemov@linux.intel.com>2014-12-29 08:00:18 -0500
committerEric Van Hensbergen <ericvh@gmail.com>2015-03-20 10:34:41 -0400
commitad80492df56b4bd2d4da9990678d87b66af42f54 (patch)
treeaa02c96f89e27cb126ed0ee8344c683efb3e732c /fs
parent9bfc52c1091c871cbc58390874b5c4ebe266bee0 (diff)
9p: fix error handling in v9fs_file_do_lock
p9_client_lock_dotl() doesn't set status if p9_client_rpc() fails. It can lead to 'default:' case in switch below and kernel crashes. Let's bypass the switch if p9_client_lock_dotl() fails. Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com> Signed-off-by: Dominique Martinet <dominique.martinet@cea.fr> Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/9p/vfs_file.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/9p/vfs_file.c b/fs/9p/vfs_file.c
index b40133796b87..8d29e1e03dfa 100644
--- a/fs/9p/vfs_file.c
+++ b/fs/9p/vfs_file.c
@@ -194,7 +194,7 @@ static int v9fs_file_do_lock(struct file *filp, int cmd, struct file_lock *fl)
194 for (;;) { 194 for (;;) {
195 res = p9_client_lock_dotl(fid, &flock, &status); 195 res = p9_client_lock_dotl(fid, &flock, &status);
196 if (res < 0) 196 if (res < 0)
197 break; 197 goto out_unlock;
198 198
199 if (status != P9_LOCK_BLOCKED) 199 if (status != P9_LOCK_BLOCKED)
200 break; 200 break;
@@ -220,6 +220,7 @@ static int v9fs_file_do_lock(struct file *filp, int cmd, struct file_lock *fl)
220 BUG(); 220 BUG();
221 } 221 }
222 222
223out_unlock:
223 /* 224 /*
224 * incase server returned error for lock request, revert 225 * incase server returned error for lock request, revert
225 * it locally 226 * it locally