Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
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
Show 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)
...
@@ -429,9 +429,9 @@ static int __init smp_read_mpc(struct mp_config_table *mpc)
struct
mpc_config_ioapic
*
m
=
struct
mpc_config_ioapic
*
m
=
(
struct
mpc_config_ioapic
*
)
mpt
;
(
struct
mpc_config_ioapic
*
)
mpt
;
MP_ioapic_info
(
m
);
MP_ioapic_info
(
m
);
mpt
+=
sizeof
(
*
m
);
count
+=
sizeof
(
*
m
);
#endif
#endif
mpt
+=
sizeof
(
struct
mpc_config_ioapic
);
count
+=
sizeof
(
struct
mpc_config_ioapic
);
break
;
break
;
}
}
case
MP_INTSRC
:
case
MP_INTSRC
:
...
@@ -441,9 +441,9 @@ static int __init smp_read_mpc(struct mp_config_table *mpc)
...
@@ -441,9 +441,9 @@ static int __init smp_read_mpc(struct mp_config_table *mpc)
(
struct
mpc_config_intsrc
*
)
mpt
;
(
struct
mpc_config_intsrc
*
)
mpt
;
MP_intsrc_info
(
m
);
MP_intsrc_info
(
m
);
mpt
+=
sizeof
(
*
m
);
count
+=
sizeof
(
*
m
);
#endif
#endif
mpt
+=
sizeof
(
struct
mpc_config_intsrc
);
count
+=
sizeof
(
struct
mpc_config_intsrc
);
break
;
break
;
}
}
case
MP_LINTSRC
:
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