Chao Yu
101e48feb6
f2fs: fix to use inline space only if inline_xattr is enable
...
[ Upstream commit 622927f3b8 ]
With below mkfs and mount option:
MKFS_OPTIONS -- -O extra_attr -O project_quota -O inode_checksum -O flexible_inline_xattr -O inode_crtime -f
MOUNT_OPTIONS -- -o noinline_xattr
We may miss xattr data with below testcase:
- mkdir dir
- setfattr -n "user.name" -v 0 dir
- for ((i = 0; i < 190; i++)) do touch dir/$i; done
- umount
- mount
- getfattr -n "user.name" dir
user.name: No such attribute
The root cause is that we persist xattr data into reserved inline xattr
space, even if inline_xattr is not enable in inline directory inode, after
inline dentry conversion, reserved space no longer exists, so that xattr
data missed.
Let's use inline xattr space only if inline_xattr flag is set on inode
to fix this iusse.
Fixes: 6afc662e68 ("f2fs: support flexible inline xattr size")
Signed-off-by: Chao Yu <yuchao0@huawei.com >
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org >
Signed-off-by: Sasha Levin <sashal@kernel.org >
2019-06-15 11:54:04 +02:00
..
2019-04-20 09:16:00 +02:00
2018-08-22 10:52:51 -07:00
2018-05-28 12:36:41 +02:00
2019-05-16 19:41:21 +02:00
2019-03-13 14:02:32 -07:00
2018-06-15 18:10:01 -03:00
2018-12-01 09:37:27 +01:00
2019-06-09 09:17:15 +02:00
2018-12-17 09:24:40 +01:00
2019-05-25 18:23:31 +02:00
2019-06-09 09:17:22 +02:00
2018-06-05 16:57:31 -07:00
2018-07-17 06:14:07 -07:00
2018-11-13 11:08:55 -08:00
2018-11-13 11:08:46 -08:00
2019-05-08 07:21:48 +02:00
2019-03-23 20:09:59 +01:00
2019-02-12 19:46:58 +01:00
2018-05-26 09:16:25 +02:00
2018-07-22 14:13:44 +02:00
2017-11-27 13:05:09 -08:00
2018-11-27 16:13:00 +01:00
2018-12-17 09:24:35 +01:00
2019-03-23 20:10:03 +01:00
2019-05-31 06:46:00 -07:00
2019-06-15 11:54:04 +02:00
2019-06-15 11:53:59 +02:00
2018-05-22 14:27:51 -04:00
2018-12-17 09:24:40 +01:00
2019-06-11 12:20:51 +02:00
2019-05-31 06:46:07 -07:00
2018-12-17 09:24:41 +01:00
2018-12-17 09:24:41 +01:00
2018-08-17 16:20:28 -07:00
2018-08-25 12:42:33 -07:00
2019-05-22 07:37:40 +02:00
2018-08-21 11:37:41 +02:00
2019-05-22 07:37:44 +02:00
2019-05-08 07:21:48 +02:00
2018-08-15 22:47:23 -07:00
2019-05-16 19:41:18 +02:00
2019-06-09 09:17:22 +02:00
2018-05-22 14:27:52 -04:00
2019-06-11 12:20:51 +02:00
2018-03-27 13:18:09 -04:00
2019-05-02 09:58:54 +02:00
2018-09-04 16:45:02 -07:00
2017-11-02 11:10:55 +01:00
2019-04-20 09:15:54 +02:00
2018-08-17 16:20:27 -07:00
2019-05-22 07:37:40 +02:00
2018-05-22 14:27:58 -04:00
2018-05-22 14:27:57 -04:00
2018-08-14 12:07:14 -04:00
2019-05-31 06:46:03 -07:00
2019-05-25 18:23:25 +02:00
2019-06-11 12:20:52 +02:00
2018-05-22 14:27:52 -04:00
2018-05-22 14:27:54 -04:00
2019-01-26 09:32:42 +01:00
2017-09-06 17:27:26 -07:00
2018-11-27 16:12:59 +01:00
2018-05-22 14:27:55 -04:00
2018-08-02 09:34:02 -07:00
2018-08-18 11:44:53 -07:00
2018-12-17 09:24:30 +01:00
2018-07-31 11:32:44 -04:00
2018-12-29 13:37:55 +01:00
2019-03-27 14:14:39 +09:00
2019-05-25 18:23:46 +02:00
2019-02-12 19:47:23 +01:00
2019-05-02 09:58:59 +02:00
2018-07-12 10:04:27 -04:00
2018-07-03 16:44:45 -04:00
2018-07-12 10:04:20 -04:00
2018-04-11 10:28:37 -07:00
2018-06-12 16:19:22 -07:00
2018-08-13 19:24:32 -07:00
2018-04-11 10:28:37 -07:00
2018-07-10 23:29:03 -04:00
2019-02-15 09:09:54 +01:00
2019-04-17 08:38:52 +02:00
2019-04-05 22:33:00 +02:00
2019-05-31 06:46:27 -07:00
2018-07-30 16:21:49 -04:00
2018-06-05 19:23:26 +02:00
2017-11-17 11:54:55 -08:00
2018-03-29 15:07:46 -04:00
2019-06-15 11:54:01 +02:00
2019-05-25 18:23:26 +02:00
2018-04-02 20:15:39 +02:00
2019-03-05 17:58:50 +01:00
2019-03-13 14:02:32 -07:00
2018-06-28 10:40:47 -07:00
2019-02-12 19:47:19 +01:00
2019-03-10 07:17:21 +01:00
2018-08-15 23:03:20 -05:00
2018-01-15 12:07:51 -08:00
2018-08-21 18:19:09 -07:00
2019-04-05 22:32:59 +02:00
2018-05-16 07:23:35 +02:00
2017-11-07 10:32:44 +01:00
2019-05-22 07:37:43 +02:00
2019-02-20 10:25:47 +01:00
2019-05-31 06:46:05 -07:00
2018-11-21 09:19:14 +01:00
2019-03-13 14:02:29 -07:00
2018-06-11 08:22:34 -07:00
2018-08-02 08:06:55 +09:00
2018-03-30 11:34:55 -07:00
2018-08-21 18:19:09 -07:00
2018-06-11 08:22:34 -07:00
2018-06-12 16:19:22 -07:00
2017-11-02 11:10:55 +01:00
2018-08-17 16:20:29 -07:00
2018-12-29 13:37:54 +01:00
2018-11-21 09:19:22 +01:00
2019-05-25 18:23:26 +02:00
2019-05-08 07:21:51 +02:00
2019-05-04 09:20:11 +02:00
2018-01-02 19:27:28 -08:00
2018-02-11 14:34:03 -08:00
2019-05-08 07:21:51 +02:00
2018-04-02 20:16:02 +02:00
2018-06-28 10:40:47 -07:00
2018-08-17 16:20:28 -07:00
2018-06-16 16:21:50 +09:00
2019-05-04 09:20:11 +02:00
2018-04-02 20:15:34 +02:00
2018-07-12 14:49:48 +01:00
2018-08-26 11:48:42 -07:00
2018-04-04 12:44:02 -07:00
2018-08-13 20:56:23 -07:00
2019-04-27 09:36:37 +02:00
2018-04-02 20:15:44 +02:00
2018-09-18 07:30:48 -04:00