d52eefb47d
ia64 has not been supported by Xen since 4.2 so it's time to drop Xen/ia64 from Linux as well. Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com> Signed-off-by: Tony Luck <tony.luck@intel.com>
22 lines
436 B
C
22 lines
436 B
C
/*
|
|
* calculate
|
|
* NR_IRQS = max(IA64_NATIVE_NR_IRQS, XEN_NR_IRQS, FOO_NR_IRQS...)
|
|
* depending on config.
|
|
* This must be calculated before processing asm-offset.c.
|
|
*/
|
|
|
|
#define ASM_OFFSETS_C 1
|
|
|
|
#include <linux/kbuild.h>
|
|
#include <linux/threads.h>
|
|
#include <asm/native/irq.h>
|
|
|
|
void foo(void)
|
|
{
|
|
union paravirt_nr_irqs_max {
|
|
char ia64_native_nr_irqs[IA64_NATIVE_NR_IRQS];
|
|
};
|
|
|
|
DEFINE(NR_IRQS, sizeof (union paravirt_nr_irqs_max));
|
|
}
|