]> Git Repo - linux.git/commitdiff
x86, mce: fix error path in mce_create_device()
authorHidetoshi Seto <[email protected]>
Thu, 18 Jun 2009 05:53:24 +0000 (14:53 +0900)
committerH. Peter Anvin <[email protected]>
Thu, 18 Jun 2009 14:02:32 +0000 (07:02 -0700)
Don't skip removing mce_attrs in route from error2.

Signed-off-by: Hidetoshi Seto <[email protected]>
Cc: Andi Kleen <[email protected]>
Cc: Huang Ying <[email protected]>
Signed-off-by: H. Peter Anvin <[email protected]>
arch/x86/kernel/cpu/mcheck/mce.c

index c2fb70d0286ffe9dd613b51b51f6792ce535cc4a..284d1de968bc3e1f2867eb2f3ca8cedf9338e1f6 100644 (file)
@@ -1798,7 +1798,7 @@ static cpumask_var_t mce_dev_initialized;
 static __cpuinit int mce_create_device(unsigned int cpu)
 {
        int err;
-       int i;
+       int i, j;
 
        if (!mce_available(&boot_cpu_data))
                return -EIO;
@@ -1816,9 +1816,9 @@ static __cpuinit int mce_create_device(unsigned int cpu)
                if (err)
                        goto error;
        }
-       for (i = 0; i < banks; i++) {
+       for (j = 0; j < banks; j++) {
                err = sysdev_create_file(&per_cpu(mce_dev, cpu),
-                                       &bank_attrs[i]);
+                                       &bank_attrs[j]);
                if (err)
                        goto error2;
        }
@@ -1826,8 +1826,8 @@ static __cpuinit int mce_create_device(unsigned int cpu)
 
        return 0;
 error2:
-       while (--i >= 0)
-               sysdev_remove_file(&per_cpu(mce_dev, cpu), &bank_attrs[i]);
+       while (--j >= 0)
+               sysdev_remove_file(&per_cpu(mce_dev, cpu), &bank_attrs[j]);
 error:
        while (--i >= 0)
                sysdev_remove_file(&per_cpu(mce_dev, cpu), mce_attrs[i]);
This page took 0.057761 seconds and 4 git commands to generate.