Displaying 2 results from an estimated 2 matches for "mpf_found".
Did you mean:
max_found
2011 Jun 28
1
"x86-64: EFI boot code" breaks 32-bit build
cc1: warnings being treated as errors
mpparse.c: In function ''efi_check_config'':
mpparse.c:669: error: format ''%08llx'' expects type ''long long unsigned int'', but argument 2 has type ''long unsigned int''
In xen/include/xen/efi.h:
23616: unsigned long mps; /* MPS table */
In xen/arch/x86/mpparse.c (line 669):
2011 Mar 09
0
[PATCH 04/11] x86: cleanup mpparse.c
...switch(*mpt) {
case MP_PROCESSOR:
@@ -489,7 +349,6 @@ static int __init smp_read_mpc(struct mp
break;
}
}
- ++mpc_record;
}
clustered_apic_check();
if (!num_processors)
@@ -655,7 +514,7 @@ static inline void __init construct_defa
}
}
-static struct intel_mp_floating *mpf_found;
+static struct intel_mp_floating *__initdata mpf_found;
/*
* Scan the memory blocks for an SMP configuration block.
@@ -840,7 +699,8 @@ void __init mp_register_lapic_address (
int __devinit mp_register_lapic (
u32 id,
- u8 enabled)
+ bool_t enabled,
+ bool_t hotplug)
{
struct...