Skip to content

Commit

Permalink
x86: cdev lock_kernel() pushdown
Browse files Browse the repository at this point in the history
Push the cdev lock_kernel() call down into the x86 msr and cpuid drivers.

Signed-off-by: Jonathan Corbet <corbet@lwn.net>
  • Loading branch information
Jonathan Corbet committed May 18, 2008
1 parent 1fa984b commit 5119e92
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 12 deletions.
25 changes: 17 additions & 8 deletions arch/x86/kernel/cpuid.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
#include <linux/init.h>
#include <linux/poll.h>
#include <linux/smp.h>
#include <linux/smp_lock.h>
#include <linux/major.h>
#include <linux/fs.h>
#include <linux/smp_lock.h>
Expand Down Expand Up @@ -107,15 +108,23 @@ static ssize_t cpuid_read(struct file *file, char __user *buf,

static int cpuid_open(struct inode *inode, struct file *file)
{
unsigned int cpu = iminor(file->f_path.dentry->d_inode);
struct cpuinfo_x86 *c = &cpu_data(cpu);

if (cpu >= NR_CPUS || !cpu_online(cpu))
return -ENXIO; /* No such CPU */
unsigned int cpu;
struct cpuinfo_x86 *c;
int ret = 0;

lock_kernel();

cpu = iminor(file->f_path.dentry->d_inode);
if (cpu >= NR_CPUS || !cpu_online(cpu)) {
ret = -ENXIO; /* No such CPU */
goto out;
}
c = &cpu_data(cpu);
if (c->cpuid_level < 0)
return -EIO; /* CPUID not supported */

return 0;
ret = -EIO; /* CPUID not supported */
out:
unlock_kernel();
return ret;
}

/*
Expand Down
16 changes: 12 additions & 4 deletions arch/x86/kernel/msr.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,20 @@ static int msr_open(struct inode *inode, struct file *file)
{
unsigned int cpu = iminor(file->f_path.dentry->d_inode);
struct cpuinfo_x86 *c = &cpu_data(cpu);
int ret = 0;

if (cpu >= NR_CPUS || !cpu_online(cpu))
return -ENXIO; /* No such CPU */
if (!cpu_has(c, X86_FEATURE_MSR))
return -EIO; /* MSR not supported */
lock_kernel();
cpu = iminor(file->f_path.dentry->d_inode);

if (cpu >= NR_CPUS || !cpu_online(cpu)) {
ret = -ENXIO; /* No such CPU */
goto out;
}
c = &cpu_data(cpu);
if (!cpu_has(c, X86_FEATURE_MSR))
ret = -EIO; /* MSR not supported */
out:
unlock_kernel();
return 0;
}

Expand Down

0 comments on commit 5119e92

Please sign in to comment.