diff options
author | Joe Perches <joe@perches.com> | 2014-01-28 10:22:22 -0800 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2014-01-29 16:58:48 +1100 |
commit | 316d718827a9b546a95c50af5a4e3c2c8b953eee (patch) | |
tree | 0a9f45850f36827a2a36dbef63fd8f94a4198edb /arch/powerpc | |
parent | fd120dc2e205d2318a8b47d6d8098b789e3af67d (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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/mm/numa.c b/arch/powerpc/mm/numa.c index 86a63de072c..30a42e24bf1 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; } |