diff options
-rw-r--r-- | arch/x86/kernel/cpuid.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/x86/kernel/cpuid.c b/arch/x86/kernel/cpuid.c index b07af8861244..ef6928418c8f 100644 --- a/arch/x86/kernel/cpuid.c +++ b/arch/x86/kernel/cpuid.c | |||
@@ -118,8 +118,6 @@ static int cpuid_open(struct inode *inode, struct file *file) | |||
118 | struct cpuinfo_x86 *c; | 118 | struct cpuinfo_x86 *c; |
119 | int ret = 0; | 119 | int ret = 0; |
120 | 120 | ||
121 | lock_kernel(); | ||
122 | |||
123 | cpu = iminor(file->f_path.dentry->d_inode); | 121 | cpu = iminor(file->f_path.dentry->d_inode); |
124 | if (cpu >= nr_cpu_ids || !cpu_online(cpu)) { | 122 | if (cpu >= nr_cpu_ids || !cpu_online(cpu)) { |
125 | ret = -ENXIO; /* No such CPU */ | 123 | ret = -ENXIO; /* No such CPU */ |
@@ -129,7 +127,6 @@ static int cpuid_open(struct inode *inode, struct file *file) | |||
129 | if (c->cpuid_level < 0) | 127 | if (c->cpuid_level < 0) |
130 | ret = -EIO; /* CPUID not supported */ | 128 | ret = -EIO; /* CPUID not supported */ |
131 | out: | 129 | out: |
132 | unlock_kernel(); | ||
133 | return ret; | 130 | return ret; |
134 | } | 131 | } |
135 | 132 | ||