]> Git Repo - linux.git/commitdiff
[PATCH] x86_64: Remove excessive stack allocation in MCE code with large NR_CPUS
authorAndi Kleen <[email protected]>
Sat, 16 Apr 2005 22:25:10 +0000 (15:25 -0700)
committerLinus Torvalds <[email protected]>
Sat, 16 Apr 2005 22:25:10 +0000 (15:25 -0700)
Remove excessive stack allocation in MCE code with large NR_CPUS

Signed-off-by: Andi Kleen <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
arch/x86_64/kernel/mce.c

index 6ca066424deed52ce3243d5398329647e86c13e2..3a89d735a4f60f7203d8b0d2e5df2d2685d299fa 100644 (file)
@@ -379,18 +379,23 @@ static void collect_tscs(void *data)
 
 static ssize_t mce_read(struct file *filp, char __user *ubuf, size_t usize, loff_t *off)
 {
-       unsigned long cpu_tsc[NR_CPUS];
+       unsigned long *cpu_tsc;
        static DECLARE_MUTEX(mce_read_sem);
        unsigned next;
        char __user *buf = ubuf;
        int i, err;
 
+       cpu_tsc = kmalloc(NR_CPUS * sizeof(long), GFP_KERNEL);
+       if (!cpu_tsc)
+               return -ENOMEM;
+
        down(&mce_read_sem); 
        next = rcu_dereference(mcelog.next);
 
        /* Only supports full reads right now */
        if (*off != 0 || usize < MCE_LOG_LEN*sizeof(struct mce)) { 
                up(&mce_read_sem);
+               kfree(cpu_tsc);
                return -EINVAL;
        }
 
@@ -421,6 +426,7 @@ static ssize_t mce_read(struct file *filp, char __user *ubuf, size_t usize, loff
                }
        }       
        up(&mce_read_sem);
+       kfree(cpu_tsc);
        return err ? -EFAULT : buf - ubuf; 
 }
 
This page took 0.054697 seconds and 4 git commands to generate.