Commit ba1ce61f authored by Ingo Molnar's avatar Ingo Molnar

x86: don't set io apic features if io-apic is not enabled, fix

Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 61048c63
...@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment