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
Kirill Smelkov
linux
Commits
ba1ce61f
Commit
ba1ce61f
authored
Apr 07, 2008
by
Ingo Molnar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x86: don't set io apic features if io-apic is not enabled, fix
Signed-off-by:
Ingo Molnar
<
mingo@elte.hu
>
parent
61048c63
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
arch/x86/kernel/mpparse_32.c
arch/x86/kernel/mpparse_32.c
+4
-4
No files found.
arch/x86/kernel/mpparse_32.c
View file @
ba1ce61f
...
...
@@ -429,9 +429,9 @@ static int __init smp_read_mpc(struct mp_config_table *mpc)
struct
mpc_config_ioapic
*
m
=
(
struct
mpc_config_ioapic
*
)
mpt
;
MP_ioapic_info
(
m
);
mpt
+=
sizeof
(
*
m
);
count
+=
sizeof
(
*
m
);
#endif
mpt
+=
sizeof
(
struct
mpc_config_ioapic
);
count
+=
sizeof
(
struct
mpc_config_ioapic
);
break
;
}
case
MP_INTSRC
:
...
...
@@ -441,9 +441,9 @@ static int __init smp_read_mpc(struct mp_config_table *mpc)
(
struct
mpc_config_intsrc
*
)
mpt
;
MP_intsrc_info
(
m
);
mpt
+=
sizeof
(
*
m
);
count
+=
sizeof
(
*
m
);
#endif
mpt
+=
sizeof
(
struct
mpc_config_intsrc
);
count
+=
sizeof
(
struct
mpc_config_intsrc
);
break
;
}
case
MP_LINTSRC
:
...
...
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