Re: [f2fs-dev][PATCH] f2fs: not allowed to set file both cold and hot

From: Chao Yu
Date: Mon Jun 19 2023 - 20:41:56 EST


On 2023/6/13 16:52, Yunlei He wrote:
File set both cold and hot advise bit is confusion, so
return EINVAL to avoid this case.

Signed-off-by: Yunlei He <heyunlei@xxxxxxxx>
---
fs/f2fs/xattr.c | 3 +++
1 file changed, 3 insertions(+)

diff --git a/fs/f2fs/xattr.c b/fs/f2fs/xattr.c
index 213805d3592c..917f3ac9f1a1 100644
--- a/fs/f2fs/xattr.c
+++ b/fs/f2fs/xattr.c
@@ -127,6 +127,9 @@ static int f2fs_xattr_advise_set(const struct xattr_handler *handler,
return -EINVAL;

new_advise = new_advise & FADVISE_MODIFIABLE_BITS;
+ if ((new_advise & FADVISE_COLD_BIT) && (new_advise & FADVISE_HOT_BIT))
+ return -EINVAL;

Yunlei,

What about the below case:

1. f2fs_xattr_advise_set(FADVISE_COLD_BIT)
2. f2fs_xattr_advise_set(FADVISE_HOT_BIT)

Thanks,

+
new_advise |= old_advise & ~FADVISE_MODIFIABLE_BITS;

F2FS_I(inode)->i_advise = new_advise;
--