2019-07-05 06:47:16

by Jaegeuk Kim

[permalink] [raw]
Subject: [PATCH] f2fs: allow all the users to pin a file

This patch allows users to pin files.

Signed-off-by: Jaegeuk Kim <[email protected]>
---
fs/f2fs/file.c | 3 ---
1 file changed, 3 deletions(-)

diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
index b164f48e0f31..f8d46df8fa9e 100644
--- a/fs/f2fs/file.c
+++ b/fs/f2fs/file.c
@@ -2964,9 +2964,6 @@ static int f2fs_ioc_set_pin_file(struct file *filp, unsigned long arg)
__u32 pin;
int ret = 0;

- if (!capable(CAP_SYS_ADMIN))
- return -EPERM;
-
if (get_user(pin, (__u32 __user *)arg))
return -EFAULT;

--
2.19.0.605.g01d371f741-goog


2019-07-11 01:04:16

by Chao Yu

[permalink] [raw]
Subject: Re: [f2fs-dev] [PATCH] f2fs: allow all the users to pin a file

On 2019/7/5 14:29, Jaegeuk Kim wrote:
> This patch allows users to pin files.
>
> Signed-off-by: Jaegeuk Kim <[email protected]>

Reviewed-by: Chao Yu <[email protected]>