[Devel] [PATCH RHEL8 COMMIT] ve/kernfs: fix lookup for kernfs superblock
Konstantin Khorenko
khorenko at virtuozzo.com
Thu May 28 12:51:51 MSK 2020
The commit is pushed to "branch-rh8-4.18.0-80.1.2.vz8.3.x-ovz" and will appear at https://src.openvz.org/scm/ovz/vzkernel.git
after rh8-4.18.0-80.1.2.vz8.3.9
------>
commit 2c72cdede19d7b71af8a99afe4ec4fa4385be6be
Author: Konstantin Khorenko <khorenko at virtuozzo.com>
Date: Thu May 28 12:51:50 2020 +0300
ve/kernfs: fix lookup for kernfs superblock
sysfs (kernfs) mount looks up for already existing superblock,
but uses non-inited kernfs_super_info->ve field for comparison.
Fill the ve field before existing superblock lookup.
https://jira.sw.ru/browse/PSBM-85052
https://jira.sw.ru/browse/PSBM-103433
Signed-off-by: Konstantin Khorenko <khorenko at virtuozzo.com>
[VvS RHEL7.8 rebase] context changes
Signed-off-by: Andrey Ryabinin <aryabinin at virtuozzo.com>
---
fs/kernfs/mount.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/fs/kernfs/mount.c b/fs/kernfs/mount.c
index f1c2335b8534..f339a037f90e 100644
--- a/fs/kernfs/mount.c
+++ b/fs/kernfs/mount.c
@@ -321,6 +321,7 @@ struct dentry *kernfs_mount_ns(struct file_system_type *fs_type, int flags,
info->root = root;
info->ns = ns;
INIT_LIST_HEAD(&info->node);
+ info->ve = get_exec_env();
sb = sget_userns(fs_type, kernfs_test_super, kernfs_set_super, flags,
&init_user_ns, info);
More information about the Devel
mailing list