Displaying 4 results from an estimated 4 matches for "mpspec_def".
2006 Mar 23
0
Compile Error xen 3.0.1 on FC5 "cc1: warnings being treated as errors"
....0.1/xen/include/asm/mpspec.h:5,
                 from /tmp/xen-3.0.1/xen/include/asm/smp.h:18,
                 from /tmp/xen-3.0.1/xen/include/xen/smp.h:13,
                 from /tmp/xen-3.0.1/xen/include/xen/sched.h:8,
                 from x86_32/asm-offsets.c:9:
/tmp/xen-3.0.1/xen/include/asm/mpspec_def.h:78: warning: \u2018packed\u2019
attribute ignored for field of type \u2018unsigned char[5u]\u2019
make[3]: *** [asm-offsets.s] Error 1
make[3]: Leaving directory `/tmp/xen-3.0.1/xen/arch/x86''
make[2]: *** [/tmp/xen-3.0.1/xen/xen] Error 2
make[2]: Leaving directory `/tmp/xen-3.0.1/xen'...
2006 Feb 02
1
RE: Re: No VMX-guests on Intel Xeon/VT
...from
> /data/xen/2install/xen301/xen-3.0.1/xen/include/xen/smp.h:13,
>                     from
> /data/xen/2install/xen301/xen-3.0.1/xen/include/xen/sched.h:8,
>                     from x86_64/asm-offsets.c:9:
>    
> /data/xen/2install/xen301/xen-3.0.1/xen/include/asm/mpspec_def.h:78: 
> warning: ?packed? attribute ignored for field of type 
> ?unsigned char[5u]?
>    make[3]: *** [asm-offsets.s] Error 1
>    make[2]: *** [/data/xen/2install/xen301/xen-3.0.1/xen/xen] Error 2
>    make[1]: *** [install-xen] Error 2
>    make: *** [world] Error 2
> -----...
2006 Feb 02
1
RE: Re: No VMX-guests on Intel Xeon/VT
...from
> /data/xen/2install/xen301/xen-3.0.1/xen/include/xen/smp.h:13,
>                     from
> /data/xen/2install/xen301/xen-3.0.1/xen/include/xen/sched.h:8,
>                     from x86_64/asm-offsets.c:9:
>    
> /data/xen/2install/xen301/xen-3.0.1/xen/include/asm/mpspec_def.h:78: 
> warning: ?packed? attribute ignored for field of type 
> ?unsigned char[5u]?
>    make[3]: *** [asm-offsets.s] Error 1
>    make[2]: *** [/data/xen/2install/xen301/xen-3.0.1/xen/xen] Error 2
>    make[1]: *** [install-xen] Error 2
>    make: *** [world] Error 2
> -----...
2011 Mar 09
0
[PATCH 04/11] x86: cleanup mpparse.c
...anslation *translation)
-{
-}
-
 int mps_oem_check(struct mp_config_table *mpc, char *oem, char *productid);
 int acpi_madt_oem_check(char *oem_id, char *oem_table_id);
 
--- 2011-03-09.orig/xen/include/asm-x86/mpspec.h
+++ 2011-03-09/xen/include/asm-x86/mpspec.h
@@ -5,25 +5,22 @@
 #include <asm/mpspec_def.h>
 #include <mach_mpspec.h>
 
-extern int mp_bus_id_to_type [MAX_MP_BUSSES];
-extern int mp_bus_id_to_node [MAX_MP_BUSSES];
-extern int mp_bus_id_to_local [MAX_MP_BUSSES];
-extern int mp_bus_id_to_pci_bus [MAX_MP_BUSSES];
+extern unsigned char mp_bus_id_to_type[MAX_MP_BUSSES];
 
-extern u...