[PATCH 2/6] proc: Add FS_GENERATED_CONTENT to filesystem flags

From: Nicolas Boichat
Date: Thu Feb 11 2021 - 23:46:10 EST


procfs content is generated at runtime.

Signed-off-by: Nicolas Boichat <drinkcat@xxxxxxxxxxxx>
---

fs/proc/root.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/proc/root.c b/fs/proc/root.c
index c7e3b1350ef8..7ed715a0f807 100644
--- a/fs/proc/root.c
+++ b/fs/proc/root.c
@@ -282,7 +282,7 @@ static struct file_system_type proc_fs_type = {
.init_fs_context = proc_init_fs_context,
.parameters = proc_fs_parameters,
.kill_sb = proc_kill_sb,
- .fs_flags = FS_USERNS_MOUNT | FS_DISALLOW_NOTIFY_PERM,
+ .fs_flags = FS_USERNS_MOUNT | FS_DISALLOW_NOTIFY_PERM | FS_GENERATED_CONTENT,
};

void __init proc_root_init(void)
--
2.30.0.478.g8a0d178c01-goog