Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f7e1ad1a authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds
Browse files

fs/binfmt_misc.c: use GFP_KERNEL instead of GFP_USER



GFP_USER means "honour cpuset nodes-allowed beancounting".  These are
regular old kernel objects and there seems no reason to give them this
treatment.

Acked-by: default avatarMike Frysinger <vapier@gentoo.org>
Cc: Joe Perches <joe@perches.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent e6084d4a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -308,7 +308,7 @@ static Node *create_entry(const char __user *buffer, size_t count)

	err = -ENOMEM;
	memsize = sizeof(Node) + count + 8;
	e = kmalloc(memsize, GFP_USER);
	e = kmalloc(memsize, GFP_KERNEL);
	if (!e)
		goto out;

@@ -416,7 +416,7 @@ static Node *create_entry(const char __user *buffer, size_t count)

			if (e->mask) {
				int i;
				char *masked = kmalloc(e->size, GFP_USER);
				char *masked = kmalloc(e->size, GFP_KERNEL);

				print_hex_dump_bytes(
					KBUILD_MODNAME ": register:  mask[decoded]: ",