Linux filesystem development
 help / color / mirror / Atom feed
* [PATCH] fs: super: use GFP_KERNEL instead of GFP_USER for super block allocation
@ 2023-12-08 15:10 Alexander Mikhalitsyn
  2023-12-08 17:22 ` Jan Kara
  2023-12-08 21:46 ` Christian Brauner
  0 siblings, 2 replies; 3+ messages in thread
From: Alexander Mikhalitsyn @ 2023-12-08 15:10 UTC (permalink / raw)
  To: brauner
  Cc: linux-fsdevel, Alexander Mikhalitsyn, Jan Kara, Alexander Viro,
	linux-kernel

There is no reason to use a GFP_USER flag for struct super_block allocation
in the alloc_super(). Instead, let's use GFP_KERNEL for that.

From the memory management perspective, the only difference between
GFP_USER and GFP_KERNEL is that GFP_USER allocations are tied to a cpuset,
while GFP_KERNEL ones are not.

There is no real issue and this is not a candidate to go to the stable,
but let's fix it for a consistency sake.

Cc: Jan Kara <jack@suse.cz>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Cc: Christian Brauner <brauner@kernel.org>
Cc: linux-fsdevel@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Alexander Mikhalitsyn <aleksandr.mikhalitsyn@canonical.com>
---
 fs/super.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/super.c b/fs/super.c
index 076392396e72..6fe482371633 100644
--- a/fs/super.c
+++ b/fs/super.c
@@ -323,7 +323,7 @@ static void destroy_unused_super(struct super_block *s)
 static struct super_block *alloc_super(struct file_system_type *type, int flags,
 				       struct user_namespace *user_ns)
 {
-	struct super_block *s = kzalloc(sizeof(struct super_block),  GFP_USER);
+	struct super_block *s = kzalloc(sizeof(struct super_block), GFP_KERNEL);
 	static const struct super_operations default_op;
 	int i;
 
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-12-08 21:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-08 15:10 [PATCH] fs: super: use GFP_KERNEL instead of GFP_USER for super block allocation Alexander Mikhalitsyn
2023-12-08 17:22 ` Jan Kara
2023-12-08 21:46 ` Christian Brauner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox