From: Joe Perches Date: Tue, 28 Jan 2014 18:22:22 +0000 (-0800) Subject: powerpc/numa: Fix decimal permissions X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=316d718827a9b546a95c50af5a4e3c2c8b953eee;p=linux-beck.git powerpc/numa: Fix decimal permissions This should have been octal. Signed-off-by: Joe Perches Signed-off-by: Benjamin Herrenschmidt --- diff --git a/arch/powerpc/mm/numa.c b/arch/powerpc/mm/numa.c index 86a63de072c6..30a42e24bf14 100644 --- a/arch/powerpc/mm/numa.c +++ b/arch/powerpc/mm/numa.c @@ -1785,7 +1785,7 @@ static const struct file_operations topology_ops = { static int topology_update_init(void) { start_topology_update(); - proc_create("powerpc/topology_updates", 644, NULL, &topology_ops); + proc_create("powerpc/topology_updates", 0644, NULL, &topology_ops); return 0; }