projects
/
platform
/
kernel
/
linux-rpi3.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fd120dc
)
powerpc/numa: Fix decimal permissions
author
Joe Perches
<joe@perches.com>
Tue, 28 Jan 2014 18:22:22 +0000
(10:22 -0800)
committer
Benjamin 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
patch
|
blob
|
history
diff --git
a/arch/powerpc/mm/numa.c
b/arch/powerpc/mm/numa.c
index
86a63de
..
30a42e2
100644
(file)
--- 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",
0
644, NULL, &topology_ops);
return 0;
}