Re: [Patch 01/14] Add definitions of x86_64 GRU MMRs.

From: Andrew Morton
Date: Wed Jan 28 2009 - 04:36:03 EST


On Thu, 22 Jan 2009 11:49:18 -0600 steiner@xxxxxxx wrote:

> Add definitions for x86_64 GRU MMRs.

Breaks x86_32:

arch/x86/include/asm/uv/uv_mmrs.h:409: error: width of 'real_time_cmpb' exceeds its type
arch/x86/include/asm/uv/uv_mmrs.h:425: error: width of 'real_time_cmpc' exceeds its type
arch/x86/include/asm/uv/uv_mmrs.h:441: error: width of 'real_time_cmpd' exceeds its type
arch/x86/include/asm/uv/uv_mmrs.h:491: error: width of 'address' exceeds its type
<etc>

due to stuff flike

unsigned long real_time_cmpb : 56; /* RW */


this:

--- a/arch/x86/kernel/io_apic.c~a
+++ a/arch/x86/kernel/io_apic.c
@@ -59,8 +59,11 @@
#include <asm/setup.h>
#include <asm/irq_remapping.h>
#include <asm/hpet.h>
+
+#ifdef CONFIG_X86_64
#include <asm/uv/uv_hub.h>
#include <asm/uv/uv_irq.h>
+#endif

#include <mach_ipi.h>
#include <mach_apic.h>
_

seems sufficient, but perhaps it'd be better if it was done within the
header?

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/