aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2014-01-28 13:22:22 -0500
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2014-01-29 00:58:48 -0500
commit316d718827a9b546a95c50af5a4e3c2c8b953eee (patch)
tree0a9f45850f36827a2a36dbef63fd8f94a4198edb /arch/powerpc
parentfd120dc2e205d2318a8b47d6d8098b789e3af67d (diff)
powerpc/numa: Fix decimal permissions
This should have been octal. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/mm/numa.c2
1 files changed, 1 insertions, 1 deletions
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 = {
1785static int topology_update_init(void) 1785static int topology_update_init(void)
1786{ 1786{
1787 start_topology_update(); 1787 start_topology_update();
1788 proc_create("powerpc/topology_updates", 644, NULL, &topology_ops); 1788 proc_create("powerpc/topology_updates", 0644, NULL, &topology_ops);
1789 1789
1790 return 0; 1790 return 0;
1791} 1791}