powerpc/numa: check error return from proc_create
authorNishanth Aravamudan <nacc@linux.vnet.ibm.com>
Thu, 9 Oct 2014 23:41:28 +0000 (16:41 -0700)
committerMichael Ellerman <mpe@ellerman.id.au>
Mon, 13 Oct 2014 07:15:53 +0000 (18:15 +1100)
proc_create can fail, we should check the return value and pass up the
failure.

Suggested-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Nishanth Aravamudan <nacc@linux.vnet.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/mm/numa.c

index 649666d5d1c20520ed554a3375c11393660871e1..51d707d85b2d5232cf21123ec5b1b5f55a51938d 100644 (file)
@@ -1801,7 +1801,8 @@ static const struct file_operations topology_ops = {
 static int topology_update_init(void)
 {
        start_topology_update();
-       proc_create("powerpc/topology_updates", 0644, NULL, &topology_ops);
+       if (!proc_create("powerpc/topology_updates", 0644, NULL, &topology_ops))
+               return -ENOMEM;
 
        return 0;
 }