From: Steven Whitehouse Date: Mon, 20 Apr 2009 08:45:54 +0000 (+0100) Subject: GFS2: Fix page_mkwrite() return code X-Git-Tag: firefly_0821_release~14397^2 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e56985da455b9dc0591b8cb2006cc94b6f4fb0f4;p=firefly-linux-kernel-4.4.55.git GFS2: Fix page_mkwrite() return code This allows for the possibility of returning VM_FAULT_OOM as well as VM_FAULT_SIGBUS. This ensures that the correct action is taken. Signed-off-by: Steven Whitehouse --- diff --git a/fs/gfs2/ops_file.c b/fs/gfs2/ops_file.c index 101caf3ee861..5d82e91887e3 100644 --- a/fs/gfs2/ops_file.c +++ b/fs/gfs2/ops_file.c @@ -413,7 +413,9 @@ out_unlock: gfs2_glock_dq(&gh); out: gfs2_holder_uninit(&gh); - if (ret) + if (ret == -ENOMEM) + ret = VM_FAULT_OOM; + else if (ret) ret = VM_FAULT_SIGBUS; return ret; }