diff mbox series

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

Message ID 20210212124354.2.I89f693bbe7011553bfac5fedd88d2fc7398be61b@changeid (mailing list archive)
State New, archived
Headers show
Series Add generated flag to filesystem struct to block copy_file_range | expand

Commit Message

Nicolas Boichat Feb. 12, 2021, 4:44 a.m. UTC
procfs content is generated at runtime.

Signed-off-by: Nicolas Boichat <drinkcat@chromium.org>
---

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

Patch

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)