From: Eric Biggers Date: Wed, 25 Jun 2014 04:45:08 +0000 (-0500) Subject: vfs: fix check for fallocate on active swapfile X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=6d2b6170c8914c6c69256b687651fb16d7ec3e18;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git vfs: fix check for fallocate on active swapfile Fix the broken check for calling sys_fallocate() on an active swapfile, introduced by commit 0790b31b69374ddadefe ("fs: disallow all fallocate operation on active swapfile"). Signed-off-by: Eric Biggers Signed-off-by: Al Viro --- diff --git a/fs/open.c b/fs/open.c index 36662d036237..d6fd3acde134 100644 --- a/fs/open.c +++ b/fs/open.c @@ -263,11 +263,10 @@ int do_fallocate(struct file *file, int mode, loff_t offset, loff_t len) return -EPERM; /* - * We can not allow to do any fallocate operation on an active - * swapfile + * We cannot allow any fallocate operation on an active swapfile */ if (IS_SWAPFILE(inode)) - ret = -ETXTBSY; + return -ETXTBSY; /* * Revalidate the write permissions, in case security policy has