[<prev] [next>] [day] [month] [year] [list]
Message-ID: <1390933342.11756.12.camel@joe-AO722>
Date: Tue, 28 Jan 2014 10:22:22 -0800
From: Joe Perches <joe@...ches.com>
To: Benjamin Herrenschmidt <benh@...nel.crashing.org>,
Nathan Fontenot <nfont@...ux.vnet.ibm.com>
Cc: linuxppc-dev@...ts.ozlabs.org, LKML <linux-kernel@...r.kernel.org>
Subject: [PATCH] powerpc: numa: Fix decimal permissions
This should have been octal.
Signed-off-by: Joe Perches <joe@...ches.com>
---
arch/powerpc/mm/numa.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/powerpc/mm/numa.c b/arch/powerpc/mm/numa.c
index 86a63de..30a42e2 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;
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists