Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
6f737f5f
Commit
6f737f5f
authored
Sep 28, 2003
by
Dave Jones
Committed by
Linus Torvalds
Sep 28, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] Cleanup SEP errata workaround.
This looks a little simpler, and has the same effect.
parent
694acdcd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
arch/i386/kernel/cpu/intel.c
arch/i386/kernel/cpu/intel.c
+3
-6
No files found.
arch/i386/kernel/cpu/intel.c
View file @
6f737f5f
...
@@ -238,12 +238,9 @@ static void __init init_intel(struct cpuinfo_x86 *c)
...
@@ -238,12 +238,9 @@ static void __init init_intel(struct cpuinfo_x86 *c)
}
}
/* SEP CPUID bug: Pentium Pro reports SEP but doesn't have it until model 3 mask 3 */
/* SEP CPUID bug: Pentium Pro reports SEP but doesn't have it until model 3 mask 3 */
if
(
c
->
x86
==
6
)
{
if
((
c
->
x86
<<
8
|
c
->
x86_model
<<
4
|
c
->
x86_mask
)
<
0x633
)
unsigned
model_mask
=
(
c
->
x86_model
<<
8
)
+
c
->
x86_mask
;
clear_bit
(
X86_FEATURE_SEP
,
c
->
x86_capability
);
if
(
model_mask
<
0x0303
)
clear_bit
(
X86_FEATURE_SEP
,
c
->
x86_capability
);
}
/* Names for the Pentium II/Celeron processors
/* Names for the Pentium II/Celeron processors
detectable only by also checking the cache size.
detectable only by also checking the cache size.
Dixon is NOT a Celeron. */
Dixon is NOT a Celeron. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment