powerpc/numa: Fix decimal permissions
authorJoe Perches <joe@perches.com>
Tue, 28 Jan 2014 18:22:22 +0000 (10:22 -0800)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Wed, 29 Jan 2014 05:58:48 +0000 (16:58 +1100)
This should have been octal.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/powerpc/mm/numa.c

index 86a63de072c617c35dc65b138b456d0ba900001a..30a42e24bf14f467c3e5cc25eb7fdef4ebd98203 100644 (file)
@@ -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;
 }
This page took 0.027804 seconds and 5 git commands to generate.