linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH -tip -v4] irq_work: generic hard-irq context callbacks
@ 2010-09-13  6:50 Huang Ying
  2010-09-13  9:18 ` Peter Zijlstra
  2010-09-13 10:32 ` Martin Schwidefsky
  0 siblings, 2 replies; 18+ messages in thread
From: Huang Ying @ 2010-09-13  6:50 UTC (permalink / raw)
  To: Ingo Molnar, H. Peter Anvin, Peter Zijlstra
  Cc: paulus, linux-kernel, Andi Kleen, dhowells, Russell King,
	Kyle McMartin, Martin Schwidefsky, davem, Linux-Arch

From:  Peter Zijlstra <a.p.zijlstra@chello.nl>

In order for other NMI context users that want to run things from
hard-IRQ context, extract the perf_event callback mechanism.

Huang Ying: some fixes

This patch is only tested on x86 platform.


v4:

-rebased on latest -tip tree

Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Huang Ying <ying.huang@intel.com>
---
 arch/alpha/Kconfig                   |    1 
 arch/alpha/include/asm/perf_event.h  |    5 -
 arch/alpha/kernel/time.c             |   30 +++---
 arch/arm/Kconfig                     |    1 
 arch/arm/include/asm/perf_event.h    |   12 --
 arch/arm/kernel/perf_event.c         |    8 -
 arch/frv/Kconfig                     |    1 
 arch/frv/lib/perf_event.c            |   19 ----
 arch/parisc/Kconfig                  |    1 
 arch/parisc/include/asm/perf_event.h |    7 -
 arch/powerpc/Kconfig                 |    1 
 arch/powerpc/kernel/time.c           |   42 ++++----
 arch/s390/Kconfig                    |    1 
 arch/s390/include/asm/perf_event.h   |   10 --
 arch/sh/Kconfig                      |    1 
 arch/sh/include/asm/perf_event.h     |    7 -
 arch/sparc/Kconfig                   |    2 
 arch/sparc/include/asm/perf_event.h  |    4 
 arch/sparc/kernel/pcr.c              |    8 -
 arch/x86/Kconfig                     |    1 
 arch/x86/include/asm/entry_arch.h    |    4 
 arch/x86/include/asm/hardirq.h       |    2 
 arch/x86/include/asm/hw_irq.h        |    2 
 arch/x86/include/asm/irq_vectors.h   |    4 
 arch/x86/kernel/Makefile             |    1 
 arch/x86/kernel/cpu/perf_event.c     |   19 ----
 arch/x86/kernel/entry_64.S           |    6 -
 arch/x86/kernel/irq.c                |    8 -
 arch/x86/kernel/irq_work.c           |   30 ++++++
 arch/x86/kernel/irqinit.c            |    6 -
 include/linux/irq_work.h             |   20 ++++
 include/linux/perf_event.h           |   11 --
 init/Kconfig                         |    8 +
 kernel/Makefile                      |    2 
 kernel/irq_work.c                    |  164 +++++++++++++++++++++++++++++++++++
 kernel/perf_event.c                  |  104 +---------------------
 kernel/timer.c                       |    7 +
 37 files changed, 307 insertions(+), 253 deletions(-)

--- /dev/null
+++ b/include/linux/irq_work.h
@@ -0,0 +1,20 @@
+#ifndef _LINUX_IRQ_WORK_H
+#define _LINUX_IRQ_WORK_H
+
+struct irq_work {
+	struct irq_work *next;
+	void (*func)(struct irq_work *);
+};
+
+static inline
+void init_irq_work(struct irq_work *entry, void (*func)(struct irq_work *))
+{
+	entry->next = NULL;
+	entry->func = func;
+}
+
+bool irq_work_queue(struct irq_work *entry);
+void irq_work_run(void);
+void irq_work_sync(struct irq_work *entry);
+
+#endif /* _LINUX_IRQ_WORK_H */
--- /dev/null
+++ b/kernel/irq_work.c
@@ -0,0 +1,164 @@
+/*
+ * Copyright (C) 2010 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
+ *
+ * Provides a framework for enqueueing and running callbacks from hardirq
+ * context. The enqueueing is NMI-safe.
+ */
+
+#include <linux/kernel.h>
+#include <linux/module.h>
+#include <linux/irq_work.h>
+#include <linux/hardirq.h>
+
+/*
+ * An entry can be in one of four states:
+ *
+ * free	     NULL, 0 -> {claimed}       : free to be used
+ * claimed   NULL, 3 -> {pending}       : claimed to be enqueued
+ * pending   next, 3 -> {busy}          : queued, pending callback
+ * busy      NULL, 2 -> {free, claimed} : callback in progress, can be claimed
+ *
+ * We use the lower two bits of the next pointer to keep PENDING and BUSY
+ * flags.
+ */
+
+#define IRQ_WORK_PENDING	1UL
+#define IRQ_WORK_BUSY		2UL
+#define IRQ_WORK_FLAGS		3UL
+
+static inline bool irq_work_is_set(struct irq_work *entry, int flags)
+{
+	return (unsigned long)entry->next & flags;
+}
+
+static inline struct irq_work *irq_work_next(struct irq_work *entry)
+{
+	unsigned long next = (unsigned long)entry->next;
+	next &= ~IRQ_WORK_FLAGS;
+	return (struct irq_work *)next;
+}
+
+static inline struct irq_work *next_flags(struct irq_work *entry, int flags)
+{
+	unsigned long next = (unsigned long)entry;
+	next |= flags;
+	return (struct irq_work *)next;
+}
+
+static DEFINE_PER_CPU(struct irq_work *, irq_work_list);
+
+/*
+ * Claim the entry so that no one else will poke at it.
+ */
+static bool irq_work_claim(struct irq_work *entry)
+{
+	struct irq_work *next, *nflags;
+
+	do {
+		next = entry->next;
+		if ((unsigned long)next & IRQ_WORK_PENDING)
+			return false;
+		nflags = next_flags(next, IRQ_WORK_FLAGS);
+	} while (cmpxchg(&entry->next, next, nflags) != next);
+
+	return true;
+}
+
+
+void __weak arch_irq_work_raise(void)
+{
+	/*
+	 * Lame architectures will get the timer tick callback
+	 */
+}
+
+/*
+ * Queue the entry and raise the IPI if needed.
+ */
+static void __irq_work_queue(struct irq_work *entry)
+{
+	struct irq_work **head, *next;
+
+	head = &get_cpu_var(irq_work_list);
+
+	do {
+		next = *head;
+		/* Can assign non-atomic because we keep the flags set. */
+		entry->next = next_flags(next, IRQ_WORK_FLAGS);
+	} while (cmpxchg(head, next, entry) != next);
+
+	/* The list was empty, raise self-interrupt to start processing. */
+	if (!irq_work_next(entry))
+		arch_irq_work_raise();
+
+	put_cpu_var(irq_work_list);
+}
+
+/*
+ * Enqueue the irq_work @entry, returns true on success, failure when the
+ * @entry was already enqueued by someone else.
+ *
+ * Can be re-enqueued while the callback is still in progress.
+ */
+bool irq_work_queue(struct irq_work *entry)
+{
+	if (!irq_work_claim(entry)) {
+		/*
+		 * Already enqueued, can't do!
+		 */
+		return false;
+	}
+
+	__irq_work_queue(entry);
+	return true;
+}
+EXPORT_SYMBOL_GPL(irq_work_queue);
+
+/*
+ * Run the irq_work entries on this cpu. Requires to be ran from hardirq
+ * context with local IRQs disabled.
+ */
+void irq_work_run(void)
+{
+	struct irq_work *list, **head;
+
+	head = &__get_cpu_var(irq_work_list);
+	if (*head == NULL)
+		return;
+
+	BUG_ON(!in_irq());
+	BUG_ON(!irqs_disabled());
+
+	list = xchg(head, NULL);
+	while (list != NULL) {
+		struct irq_work *entry = list;
+
+		list = irq_work_next(list);
+
+		/*
+		 * Clear the PENDING bit, after this point the @entry
+		 * can be re-used.
+		 */
+		entry->next = next_flags(NULL, IRQ_WORK_BUSY);
+		entry->func(entry);
+		/*
+		 * Clear the BUSY bit and return to the free state if
+		 * no-one else claimed it meanwhile.
+		 */
+		cmpxchg(&entry->next, next_flags(NULL, IRQ_WORK_BUSY), NULL);
+	}
+}
+EXPORT_SYMBOL_GPL(irq_work_run);
+
+/*
+ * Synchronize against the irq_work @entry, ensures the entry is not
+ * currently in use.
+ */
+void irq_work_sync(struct irq_work *entry)
+{
+	WARN_ON_ONCE(irqs_disabled());
+
+	while (irq_work_is_set(entry, IRQ_WORK_BUSY))
+		cpu_relax();
+}
+EXPORT_SYMBOL_GPL(irq_work_sync);
--- a/arch/alpha/Kconfig
+++ b/arch/alpha/Kconfig
@@ -9,6 +9,7 @@ config ALPHA
 	select HAVE_IDE
 	select HAVE_OPROFILE
 	select HAVE_SYSCALL_WRAPPERS
+	select HAVE_IRQ_WORK
 	select HAVE_PERF_EVENTS
 	select HAVE_DMA_ATTRS
 	help
--- a/arch/alpha/include/asm/perf_event.h
+++ b/arch/alpha/include/asm/perf_event.h
@@ -1,11 +1,6 @@
 #ifndef __ASM_ALPHA_PERF_EVENT_H
 #define __ASM_ALPHA_PERF_EVENT_H
 
-/* Alpha only supports software events through this interface. */
-extern void set_perf_event_pending(void);
-
-#define PERF_EVENT_INDEX_OFFSET 0
-
 #ifdef CONFIG_PERF_EVENTS
 extern void init_hw_perf_events(void);
 #else
--- a/arch/alpha/kernel/time.c
+++ b/arch/alpha/kernel/time.c
@@ -41,7 +41,7 @@
 #include <linux/init.h>
 #include <linux/bcd.h>
 #include <linux/profile.h>
-#include <linux/perf_event.h>
+#include <linux/irq_work.h>
 
 #include <asm/uaccess.h>
 #include <asm/io.h>
@@ -83,25 +83,25 @@ static struct {
 
 unsigned long est_cycle_freq;
 
-#ifdef CONFIG_PERF_EVENTS
+#ifdef CONFIG_IRQ_WORK
 
-DEFINE_PER_CPU(u8, perf_event_pending);
+DEFINE_PER_CPU(u8, irq_work_pending);
 
-#define set_perf_event_pending_flag()  __get_cpu_var(perf_event_pending) = 1
-#define test_perf_event_pending()      __get_cpu_var(perf_event_pending)
-#define clear_perf_event_pending()     __get_cpu_var(perf_event_pending) = 0
+#define set_irq_work_pending_flag()  __get_cpu_var(irq_work_pending) = 1
+#define test_irq_work_pending()      __get_cpu_var(irq_work_pending)
+#define clear_irq_work_pending()     __get_cpu_var(irq_work_pending) = 0
 
-void set_perf_event_pending(void)
+void set_irq_work_pending(void)
 {
-	set_perf_event_pending_flag();
+	set_irq_work_pending_flag();
 }
 
-#else  /* CONFIG_PERF_EVENTS */
+#else  /* CONFIG_IRQ_WORK */
 
-#define test_perf_event_pending()      0
-#define clear_perf_event_pending()
+#define test_irq_work_pending()      0
+#define clear_irq_work_pending()
 
-#endif /* CONFIG_PERF_EVENTS */
+#endif /* CONFIG_IRQ_WORK */
 
 
 static inline __u32 rpcc(void)
@@ -196,9 +196,9 @@ irqreturn_t timer_interrupt(int irq, voi
 		update_process_times(user_mode(get_irq_regs()));
 #endif
 
-	if (test_perf_event_pending()) {
-		clear_perf_event_pending();
-		perf_event_do_pending();
+	if (test_irq_work_pending()) {
+		clear_irq_work_pending();
+		irq_work_do_pending();
 	}
 
 	return IRQ_HANDLED;
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -23,6 +23,7 @@ config ARM
 	select HAVE_KERNEL_GZIP
 	select HAVE_KERNEL_LZO
 	select HAVE_KERNEL_LZMA
+	select HAVE_IRQ_WORK
 	select HAVE_PERF_EVENTS
 	select PERF_USE_VMALLOC
 	select HAVE_REGS_AND_STACK_ACCESS_API
--- a/arch/arm/include/asm/perf_event.h
+++ b/arch/arm/include/asm/perf_event.h
@@ -12,18 +12,6 @@
 #ifndef __ARM_PERF_EVENT_H__
 #define __ARM_PERF_EVENT_H__
 
-/*
- * NOP: on *most* (read: all supported) ARM platforms, the performance
- * counter interrupts are regular interrupts and not an NMI. This
- * means that when we receive the interrupt we can call
- * perf_event_do_pending() that handles all of the work with
- * interrupts disabled.
- */
-static inline void
-set_perf_event_pending(void)
-{
-}
-
 /* ARM performance counters start from 1 (in the cp15 accesses) so use the
  * same indexes here for consistency. */
 #define PERF_EVENT_INDEX_OFFSET 1
--- a/arch/frv/Kconfig
+++ b/arch/frv/Kconfig
@@ -7,6 +7,7 @@ config FRV
 	default y
 	select HAVE_IDE
 	select HAVE_ARCH_TRACEHOOK
+	select HAVE_IRQ_WORK
 	select HAVE_PERF_EVENTS
 
 config ZONE_DMA
--- a/arch/frv/lib/perf_event.c
+++ /dev/null
@@ -1,19 +0,0 @@
-/* Performance event handling
- *
- * Copyright (C) 2009 Red Hat, Inc. All Rights Reserved.
- * Written by David Howells (dhowells@redhat.com)
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public Licence
- * as published by the Free Software Foundation; either version
- * 2 of the Licence, or (at your option) any later version.
- */
-
-#include <linux/perf_event.h>
-
-/*
- * mark the performance event as pending
- */
-void set_perf_event_pending(void)
-{
-}
--- a/arch/parisc/Kconfig
+++ b/arch/parisc/Kconfig
@@ -16,6 +16,7 @@ config PARISC
 	select RTC_DRV_GENERIC
 	select INIT_ALL_POSSIBLE
 	select BUG
+	select HAVE_IRQ_WORK
 	select HAVE_PERF_EVENTS
 	select GENERIC_ATOMIC64 if !64BIT
 	help
--- a/arch/parisc/include/asm/perf_event.h
+++ /dev/null
@@ -1,7 +0,0 @@
-#ifndef __ASM_PARISC_PERF_EVENT_H
-#define __ASM_PARISC_PERF_EVENT_H
-
-/* parisc only supports software events through this interface. */
-static inline void set_perf_event_pending(void) { }
-
-#endif /* __ASM_PARISC_PERF_EVENT_H */
--- a/arch/powerpc/Kconfig
+++ b/arch/powerpc/Kconfig
@@ -138,6 +138,7 @@ config PPC
 	select HAVE_OPROFILE
 	select HAVE_SYSCALL_WRAPPERS if PPC64
 	select GENERIC_ATOMIC64 if PPC32
+	select HAVE_IRQ_WORK
 	select HAVE_PERF_EVENTS
 	select HAVE_REGS_AND_STACK_ACCESS_API
 	select HAVE_HW_BREAKPOINT if PERF_EVENTS && PPC_BOOK3S_64
--- a/arch/powerpc/kernel/time.c
+++ b/arch/powerpc/kernel/time.c
@@ -53,7 +53,7 @@
 #include <linux/posix-timers.h>
 #include <linux/irq.h>
 #include <linux/delay.h>
-#include <linux/perf_event.h>
+#include <linux/irq_work.h>
 #include <asm/trace.h>
 
 #include <asm/io.h>
@@ -493,60 +493,60 @@ void __init iSeries_time_init_early(void
 }
 #endif /* CONFIG_PPC_ISERIES */
 
-#ifdef CONFIG_PERF_EVENTS
+#ifdef CONFIG_IRQ_WORK
 
 /*
  * 64-bit uses a byte in the PACA, 32-bit uses a per-cpu variable...
  */
 #ifdef CONFIG_PPC64
-static inline unsigned long test_perf_event_pending(void)
+static inline unsigned long test_irq_work_pending(void)
 {
 	unsigned long x;
 
 	asm volatile("lbz %0,%1(13)"
 		: "=r" (x)
-		: "i" (offsetof(struct paca_struct, perf_event_pending)));
+		: "i" (offsetof(struct paca_struct, irq_work_pending)));
 	return x;
 }
 
-static inline void set_perf_event_pending_flag(void)
+static inline void set_irq_work_pending_flag(void)
 {
 	asm volatile("stb %0,%1(13)" : :
 		"r" (1),
-		"i" (offsetof(struct paca_struct, perf_event_pending)));
+		"i" (offsetof(struct paca_struct, irq_work_pending)));
 }
 
-static inline void clear_perf_event_pending(void)
+static inline void clear_irq_work_pending(void)
 {
 	asm volatile("stb %0,%1(13)" : :
 		"r" (0),
-		"i" (offsetof(struct paca_struct, perf_event_pending)));
+		"i" (offsetof(struct paca_struct, irq_work_pending)));
 }
 
 #else /* 32-bit */
 
-DEFINE_PER_CPU(u8, perf_event_pending);
+DEFINE_PER_CPU(u8, irq_work_pending);
 
-#define set_perf_event_pending_flag()	__get_cpu_var(perf_event_pending) = 1
-#define test_perf_event_pending()	__get_cpu_var(perf_event_pending)
-#define clear_perf_event_pending()	__get_cpu_var(perf_event_pending) = 0
+#define set_irq_work_pending_flag()	__get_cpu_var(irq_work_pending) = 1
+#define test_irq_work_pending()		__get_cpu_var(irq_work_pending)
+#define clear_irq_work_pending()	__get_cpu_var(irq_work_pending) = 0
 
 #endif /* 32 vs 64 bit */
 
-void set_perf_event_pending(void)
+void set_irq_work_pending(void)
 {
 	preempt_disable();
-	set_perf_event_pending_flag();
+	set_irq_work_pending_flag();
 	set_dec(1);
 	preempt_enable();
 }
 
-#else  /* CONFIG_PERF_EVENTS */
+#else  /* CONFIG_IRQ_WORK */
 
-#define test_perf_event_pending()	0
-#define clear_perf_event_pending()
+#define test_irq_work_pending()	0
+#define clear_irq_work_pending()
 
-#endif /* CONFIG_PERF_EVENTS */
+#endif /* CONFIG_IRQ_WORK */
 
 /*
  * For iSeries shared processors, we have to let the hypervisor
@@ -587,9 +587,9 @@ void timer_interrupt(struct pt_regs * re
 
 	calculate_steal_time();
 
-	if (test_perf_event_pending()) {
-		clear_perf_event_pending();
-		perf_event_do_pending();
+	if (test_irq_work_pending()) {
+		clear_irq_work_pending();
+		irq_work_run();
 	}
 
 #ifdef CONFIG_PPC_ISERIES
--- a/arch/s390/Kconfig
+++ b/arch/s390/Kconfig
@@ -95,6 +95,7 @@ config S390
 	select HAVE_KVM if 64BIT
 	select HAVE_ARCH_TRACEHOOK
 	select INIT_ALL_POSSIBLE
+	select HAVE_IRQ_WORK
 	select HAVE_PERF_EVENTS
 	select HAVE_KERNEL_GZIP
 	select HAVE_KERNEL_BZIP2
--- a/arch/s390/include/asm/perf_event.h
+++ /dev/null
@@ -1,10 +0,0 @@
-/*
- * Performance event support - s390 specific definitions.
- *
- * Copyright 2009 Martin Schwidefsky, IBM Corporation.
- */
-
-static inline void set_perf_event_pending(void) {}
-static inline void clear_perf_event_pending(void) {}
-
-#define PERF_EVENT_INDEX_OFFSET 0
--- a/arch/sh/Kconfig
+++ b/arch/sh/Kconfig
@@ -16,6 +16,7 @@ config SUPERH
 	select HAVE_ARCH_TRACEHOOK
 	select HAVE_DMA_API_DEBUG
 	select HAVE_DMA_ATTRS
+	select HAVE_IRQ_WORK
 	select HAVE_PERF_EVENTS
 	select PERF_USE_VMALLOC
 	select HAVE_KERNEL_GZIP
--- a/arch/sh/include/asm/perf_event.h
+++ b/arch/sh/include/asm/perf_event.h
@@ -26,11 +26,4 @@ extern int register_sh_pmu(struct sh_pmu
 extern int reserve_pmc_hardware(void);
 extern void release_pmc_hardware(void);
 
-static inline void set_perf_event_pending(void)
-{
-	/* Nothing to see here, move along. */
-}
-
-#define PERF_EVENT_INDEX_OFFSET	0
-
 #endif /* __ASM_SH_PERF_EVENT_H */
--- a/arch/sparc/Kconfig
+++ b/arch/sparc/Kconfig
@@ -26,6 +26,7 @@ config SPARC
 	select ARCH_WANT_OPTIONAL_GPIOLIB
 	select RTC_CLASS
 	select RTC_DRV_M48T59
+	select HAVE_IRQ_WORK
 	select HAVE_PERF_EVENTS
 	select PERF_USE_VMALLOC
 	select HAVE_DMA_ATTRS
@@ -53,6 +54,7 @@ config SPARC64
 	select RTC_DRV_BQ4802
 	select RTC_DRV_SUN4V
 	select RTC_DRV_STARFIRE
+	select HAVE_IRQ_WORK
 	select HAVE_PERF_EVENTS
 	select PERF_USE_VMALLOC
 
--- a/arch/sparc/include/asm/perf_event.h
+++ b/arch/sparc/include/asm/perf_event.h
@@ -1,10 +1,6 @@
 #ifndef __ASM_SPARC_PERF_EVENT_H
 #define __ASM_SPARC_PERF_EVENT_H
 
-extern void set_perf_event_pending(void);
-
-#define	PERF_EVENT_INDEX_OFFSET	0
-
 #ifdef CONFIG_PERF_EVENTS
 #include <asm/ptrace.h>
 
--- a/arch/sparc/kernel/pcr.c
+++ b/arch/sparc/kernel/pcr.c
@@ -7,7 +7,7 @@
 #include <linux/init.h>
 #include <linux/irq.h>
 
-#include <linux/perf_event.h>
+#include <linux/irq_work.h>
 #include <linux/ftrace.h>
 
 #include <asm/pil.h>
@@ -43,14 +43,14 @@ void __irq_entry deferred_pcr_work_irq(i
 
 	old_regs = set_irq_regs(regs);
 	irq_enter();
-#ifdef CONFIG_PERF_EVENTS
-	perf_event_do_pending();
+#ifdef CONFIG_IRQ_WORK
+	irq_work_run();
 #endif
 	irq_exit();
 	set_irq_regs(old_regs);
 }
 
-void set_perf_event_pending(void)
+void arch_irq_work_raise(void)
 {
 	set_softint(1 << PIL_DEFERRED_PCR_WORK);
 }
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -25,6 +25,7 @@ config X86
 	select HAVE_IDE
 	select HAVE_OPROFILE
 	select HAVE_PERF_EVENTS if (!M386 && !M486)
+	select HAVE_IRQ_WORK
 	select HAVE_IOREMAP_PROT
 	select HAVE_KPROBES
 	select HAVE_MEMBLOCK
--- a/arch/x86/include/asm/entry_arch.h
+++ b/arch/x86/include/asm/entry_arch.h
@@ -49,8 +49,8 @@ BUILD_INTERRUPT(apic_timer_interrupt,LOC
 BUILD_INTERRUPT(error_interrupt,ERROR_APIC_VECTOR)
 BUILD_INTERRUPT(spurious_interrupt,SPURIOUS_APIC_VECTOR)
 
-#ifdef CONFIG_PERF_EVENTS
-BUILD_INTERRUPT(perf_pending_interrupt, LOCAL_PENDING_VECTOR)
+#ifdef CONFIG_IRQ_WORK
+BUILD_INTERRUPT(irq_work_interrupt, IRQ_WORK_VECTOR)
 #endif
 
 #ifdef CONFIG_X86_THERMAL_VECTOR
--- a/arch/x86/include/asm/hw_irq.h
+++ b/arch/x86/include/asm/hw_irq.h
@@ -29,7 +29,7 @@
 extern void apic_timer_interrupt(void);
 extern void x86_platform_ipi(void);
 extern void error_interrupt(void);
-extern void perf_pending_interrupt(void);
+extern void irq_work_interrupt(void);
 
 extern void spurious_interrupt(void);
 extern void thermal_interrupt(void);
--- a/arch/x86/kernel/Makefile
+++ b/arch/x86/kernel/Makefile
@@ -33,6 +33,7 @@ obj-y			:= process_$(BITS).o signal.o en
 obj-y			+= traps.o irq.o irq_$(BITS).o dumpstack_$(BITS).o
 obj-y			+= time.o ioport.o ldt.o dumpstack.o
 obj-y			+= setup.o x86_init.o i8259.o irqinit.o
+obj-$(CONFIG_IRQ_WORK)  += irq_work.o
 obj-$(CONFIG_X86_VISWS)	+= visws_quirks.o
 obj-$(CONFIG_X86_32)	+= probe_roms_32.o
 obj-$(CONFIG_X86_32)	+= sys_i386_32.o i386_ksyms_32.o
--- a/arch/x86/kernel/cpu/perf_event.c
+++ b/arch/x86/kernel/cpu/perf_event.c
@@ -1188,25 +1188,6 @@ static int x86_pmu_handle_irq(struct pt_
 	return handled;
 }
 
-void smp_perf_pending_interrupt(struct pt_regs *regs)
-{
-	irq_enter();
-	ack_APIC_irq();
-	inc_irq_stat(apic_pending_irqs);
-	perf_event_do_pending();
-	irq_exit();
-}
-
-void set_perf_event_pending(void)
-{
-#ifdef CONFIG_X86_LOCAL_APIC
-	if (!x86_pmu.apic || !x86_pmu_initialized())
-		return;
-
-	apic->send_IPI_self(LOCAL_PENDING_VECTOR);
-#endif
-}
-
 void perf_events_lapic_init(void)
 {
 	if (!x86_pmu.apic || !x86_pmu_initialized())
--- a/arch/x86/kernel/entry_64.S
+++ b/arch/x86/kernel/entry_64.S
@@ -1005,9 +1005,9 @@ apicinterrupt ERROR_APIC_VECTOR \
 apicinterrupt SPURIOUS_APIC_VECTOR \
 	spurious_interrupt smp_spurious_interrupt
 
-#ifdef CONFIG_PERF_EVENTS
-apicinterrupt LOCAL_PENDING_VECTOR \
-	perf_pending_interrupt smp_perf_pending_interrupt
+#ifdef CONFIG_IRQ_WORK
+apicinterrupt IRQ_WORK_VECTOR \
+	irq_work_interrupt smp_irq_work_interrupt
 #endif
 
 /*
--- /dev/null
+++ b/arch/x86/kernel/irq_work.c
@@ -0,0 +1,30 @@
+/*
+ * x86 specific code for irq_work
+ *
+ * Copyright (C) 2010 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
+ */
+
+#include <linux/kernel.h>
+#include <linux/irq_work.h>
+#include <linux/hardirq.h>
+#include <asm/apic.h>
+
+void smp_irq_work_interrupt(struct pt_regs *regs)
+{
+	irq_enter();
+	ack_APIC_irq();
+	inc_irq_stat(apic_irq_work_irqs);
+	irq_work_run();
+	irq_exit();
+}
+
+void arch_irq_work_raise(void)
+{
+#ifdef CONFIG_X86_LOCAL_APIC
+	if (!cpu_has_apic)
+		return;
+
+	apic->send_IPI_self(IRQ_WORK_VECTOR);
+	apic_wait_icr_idle();
+#endif
+}
--- a/arch/x86/kernel/irqinit.c
+++ b/arch/x86/kernel/irqinit.c
@@ -224,9 +224,9 @@ static void __init apic_intr_init(void)
 	alloc_intr_gate(SPURIOUS_APIC_VECTOR, spurious_interrupt);
 	alloc_intr_gate(ERROR_APIC_VECTOR, error_interrupt);
 
-	/* Performance monitoring interrupts: */
-# ifdef CONFIG_PERF_EVENTS
-	alloc_intr_gate(LOCAL_PENDING_VECTOR, perf_pending_interrupt);
+	/* IRQ work interrupts: */
+# ifdef CONFIG_IRQ_WORK
+	alloc_intr_gate(IRQ_WORK_VECTOR, irq_work_interrupt);
 # endif
 
 #endif
--- a/include/linux/perf_event.h
+++ b/include/linux/perf_event.h
@@ -486,6 +486,7 @@ struct perf_guest_info_callbacks {
 #include <linux/workqueue.h>
 #include <linux/ftrace.h>
 #include <linux/cpu.h>
+#include <linux/irq_work.h>
 #include <asm/atomic.h>
 #include <asm/local.h>
 
@@ -672,11 +673,6 @@ struct perf_buffer {
 	void				*data_pages[0];
 };
 
-struct perf_pending_entry {
-	struct perf_pending_entry *next;
-	void (*func)(struct perf_pending_entry *);
-};
-
 struct perf_sample_data;
 
 typedef void (*perf_overflow_handler_t)(struct perf_event *, int,
@@ -784,7 +780,7 @@ struct perf_event {
 	int				pending_wakeup;
 	int				pending_kill;
 	int				pending_disable;
-	struct perf_pending_entry	pending;
+	struct irq_work			pending;
 
 	atomic_t			event_limit;
 
@@ -890,8 +886,6 @@ extern int perf_event_init_task(struct t
 extern void perf_event_exit_task(struct task_struct *child);
 extern void perf_event_free_task(struct task_struct *task);
 extern void perf_event_delayed_put(struct task_struct *task);
-extern void set_perf_event_pending(void);
-extern void perf_event_do_pending(void);
 extern void perf_event_print_debug(void);
 extern void perf_pmu_disable(struct pmu *pmu);
 extern void perf_pmu_enable(struct pmu *pmu);
@@ -1069,7 +1063,6 @@ static inline int perf_event_init_task(s
 static inline void perf_event_exit_task(struct task_struct *child)	{ }
 static inline void perf_event_free_task(struct task_struct *task)	{ }
 static inline void perf_event_delayed_put(struct task_struct *task)	{ }
-static inline void perf_event_do_pending(void)				{ }
 static inline void perf_event_print_debug(void)				{ }
 static inline int perf_event_task_disable(void)				{ return -EINVAL; }
 static inline int perf_event_task_enable(void)				{ return -EINVAL; }
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -21,6 +21,13 @@ config CONSTRUCTORS
 	depends on !UML
 	default y
 
+config HAVE_IRQ_WORK
+	bool
+
+config IRQ_WORK
+	bool
+	depends on HAVE_IRQ_WORK
+
 menu "General setup"
 
 config EXPERIMENTAL
@@ -1005,6 +1012,7 @@ config PERF_EVENTS
 	default y if (PROFILING || PERF_COUNTERS)
 	depends on HAVE_PERF_EVENTS
 	select ANON_INODES
+	select IRQ_WORK
 	help
 	  Enable kernel support for various performance events provided
 	  by software and hardware.
--- a/kernel/Makefile
+++ b/kernel/Makefile
@@ -22,6 +22,7 @@ CFLAGS_REMOVE_rtmutex-debug.o = -pg
 CFLAGS_REMOVE_cgroup-debug.o = -pg
 CFLAGS_REMOVE_sched_clock.o = -pg
 CFLAGS_REMOVE_perf_event.o = -pg
+CFLAGS_REMOVE_irq_work.o = -pg
 endif
 
 obj-$(CONFIG_FREEZER) += freezer.o
@@ -100,6 +101,7 @@ obj-$(CONFIG_TRACING) += trace/
 obj-$(CONFIG_X86_DS) += trace/
 obj-$(CONFIG_RING_BUFFER) += trace/
 obj-$(CONFIG_SMP) += sched_cpupri.o
+obj-$(CONFIG_IRQ_WORK) += irq_work.o
 obj-$(CONFIG_PERF_EVENTS) += perf_event.o
 obj-$(CONFIG_HAVE_HW_BREAKPOINT) += hw_breakpoint.o
 obj-$(CONFIG_USER_RETURN_NOTIFIER) += user-return-notifier.o
--- a/kernel/perf_event.c
+++ b/kernel/perf_event.c
@@ -2123,12 +2123,11 @@ static void free_event_rcu(struct rcu_he
 	kfree(event);
 }
 
-static void perf_pending_sync(struct perf_event *event);
 static void perf_buffer_put(struct perf_buffer *buffer);
 
 static void free_event(struct perf_event *event)
 {
-	perf_pending_sync(event);
+	irq_work_sync(&event->pending);
 
 	if (!event->parent) {
 		atomic_dec(&nr_events);
@@ -3077,16 +3076,7 @@ void perf_event_wakeup(struct perf_event
 	}
 }
 
-/*
- * Pending wakeups
- *
- * Handle the case where we need to wakeup up from NMI (or rq->lock) context.
- *
- * The NMI bit means we cannot possibly take locks. Therefore, maintain a
- * single linked list and use cmpxchg() to add entries lockless.
- */
-
-static void perf_pending_event(struct perf_pending_entry *entry)
+static void perf_pending_event(struct irq_work *entry)
 {
 	struct perf_event *event = container_of(entry,
 			struct perf_event, pending);
@@ -3102,89 +3092,6 @@ static void perf_pending_event(struct pe
 	}
 }
 
-#define PENDING_TAIL ((struct perf_pending_entry *)-1UL)
-
-static DEFINE_PER_CPU(struct perf_pending_entry *, perf_pending_head) = {
-	PENDING_TAIL,
-};
-
-static void perf_pending_queue(struct perf_pending_entry *entry,
-			       void (*func)(struct perf_pending_entry *))
-{
-	struct perf_pending_entry **head;
-
-	if (cmpxchg(&entry->next, NULL, PENDING_TAIL) != NULL)
-		return;
-
-	entry->func = func;
-
-	head = &get_cpu_var(perf_pending_head);
-
-	do {
-		entry->next = *head;
-	} while (cmpxchg(head, entry->next, entry) != entry->next);
-
-	set_perf_event_pending();
-
-	put_cpu_var(perf_pending_head);
-}
-
-static int __perf_pending_run(void)
-{
-	struct perf_pending_entry *list;
-	int nr = 0;
-
-	list = xchg(&__get_cpu_var(perf_pending_head), PENDING_TAIL);
-	while (list != PENDING_TAIL) {
-		void (*func)(struct perf_pending_entry *);
-		struct perf_pending_entry *entry = list;
-
-		list = list->next;
-
-		func = entry->func;
-		entry->next = NULL;
-		/*
-		 * Ensure we observe the unqueue before we issue the wakeup,
-		 * so that we won't be waiting forever.
-		 * -- see perf_not_pending().
-		 */
-		smp_wmb();
-
-		func(entry);
-		nr++;
-	}
-
-	return nr;
-}
-
-static inline int perf_not_pending(struct perf_event *event)
-{
-	/*
-	 * If we flush on whatever cpu we run, there is a chance we don't
-	 * need to wait.
-	 */
-	get_cpu();
-	__perf_pending_run();
-	put_cpu();
-
-	/*
-	 * Ensure we see the proper queue state before going to sleep
-	 * so that we do not miss the wakeup. -- see perf_pending_handle()
-	 */
-	smp_rmb();
-	return event->pending.next == NULL;
-}
-
-static void perf_pending_sync(struct perf_event *event)
-{
-	wait_event(event->waitq, perf_not_pending(event));
-}
-
-void perf_event_do_pending(void)
-{
-	__perf_pending_run();
-}
-
 /*
  * We assume there is only KVM supporting the callbacks.
  * Later on, we might change it to a list if there is
@@ -3234,8 +3141,7 @@ static void perf_output_wakeup(struct pe
 
 	if (handle->nmi) {
 		handle->event->pending_wakeup = 1;
-		perf_pending_queue(&handle->event->pending,
-				   perf_pending_event);
+		irq_work_queue(&handle->event->pending);
 	} else
 		perf_event_wakeup(handle->event);
 }
@@ -4265,8 +4171,7 @@ static int __perf_event_overflow(struct
 		event->pending_kill = POLL_HUP;
 		if (nmi) {
 			event->pending_disable = 1;
-			perf_pending_queue(&event->pending,
-					   perf_pending_event);
+			irq_work_queue(&event->pending);
 		} else
 			perf_event_disable(event);
 	}
@@ -5282,6 +5187,7 @@ perf_event_alloc(struct perf_event_attr
 	INIT_LIST_HEAD(&event->event_entry);
 	INIT_LIST_HEAD(&event->sibling_list);
 	init_waitqueue_head(&event->waitq);
+	init_irq_work(&event->pending, perf_pending_event);
 
 	mutex_init(&event->mmap_mutex);
 
--- a/kernel/timer.c
+++ b/kernel/timer.c
@@ -37,7 +37,7 @@
 #include <linux/delay.h>
 #include <linux/tick.h>
 #include <linux/kallsyms.h>
-#include <linux/perf_event.h>
+#include <linux/irq_work.h>
 #include <linux/sched.h>
 #include <linux/slab.h>
 
@@ -1279,7 +1279,10 @@ void update_process_times(int user_tick)
 	run_local_timers();
 	rcu_check_callbacks(cpu, user_tick);
 	printk_tick();
-	perf_event_do_pending();
+#ifdef CONFIG_IRQ_WORK
+	if (in_irq())
+		irq_work_run();
+#endif
 	scheduler_tick();
 	run_posix_cpu_timers(p);
 }
--- a/arch/arm/kernel/perf_event.c
+++ b/arch/arm/kernel/perf_event.c
@@ -1086,7 +1086,7 @@ armv6pmu_handle_irq(int irq_num,
 	 * platforms that can have the PMU interrupts raised as an NMI, this
 	 * will not work.
 	 */
-	perf_event_do_pending();
+	irq_work_run();
 
 	return IRQ_HANDLED;
 }
@@ -2062,7 +2062,7 @@ static irqreturn_t armv7pmu_handle_irq(i
 	 * platforms that can have the PMU interrupts raised as an NMI, this
 	 * will not work.
 	 */
-	perf_event_do_pending();
+	irq_work_run();
 
 	return IRQ_HANDLED;
 }
@@ -2430,7 +2430,7 @@ xscale1pmu_handle_irq(int irq_num, void
 			armpmu->disable(hwc, idx);
 	}
 
-	perf_event_do_pending();
+	irq_work_run();
 
 	/*
 	 * Re-enable the PMU.
@@ -2757,7 +2757,7 @@ xscale2pmu_handle_irq(int irq_num, void
 			armpmu->disable(hwc, idx);
 	}
 
-	perf_event_do_pending();
+	irq_work_run();
 
 	/*
 	 * Re-enable the PMU.
--- a/arch/x86/include/asm/irq_vectors.h
+++ b/arch/x86/include/asm/irq_vectors.h
@@ -114,9 +114,9 @@
 #define X86_PLATFORM_IPI_VECTOR		0xed
 
 /*
- * Performance monitoring pending work vector:
+ * IRQ work vector:
  */
-#define LOCAL_PENDING_VECTOR		0xec
+#define IRQ_WORK_VECTOR			0xec
 
 #define UV_BAU_MESSAGE			0xea
 
--- a/arch/x86/include/asm/hardirq.h
+++ b/arch/x86/include/asm/hardirq.h
@@ -14,7 +14,7 @@ typedef struct {
 #endif
 	unsigned int x86_platform_ipis;	/* arch dependent */
 	unsigned int apic_perf_irqs;
-	unsigned int apic_pending_irqs;
+	unsigned int apic_irq_work_irqs;
 #ifdef CONFIG_SMP
 	unsigned int irq_resched_count;
 	unsigned int irq_call_count;
--- a/arch/x86/kernel/irq.c
+++ b/arch/x86/kernel/irq.c
@@ -67,10 +67,10 @@ static int show_other_interrupts(struct
 	for_each_online_cpu(j)
 		seq_printf(p, "%10u ", irq_stats(j)->apic_perf_irqs);
 	seq_printf(p, "  Performance monitoring interrupts\n");
-	seq_printf(p, "%*s: ", prec, "PND");
+	seq_printf(p, "%*s: ", prec, "IWI");
 	for_each_online_cpu(j)
-		seq_printf(p, "%10u ", irq_stats(j)->apic_pending_irqs);
-	seq_printf(p, "  Performance pending work\n");
+		seq_printf(p, "%10u ", irq_stats(j)->apic_irq_work_irqs);
+	seq_printf(p, "  IRQ work interrupts\n");
 #endif
 	if (x86_platform_ipi_callback) {
 		seq_printf(p, "%*s: ", prec, "PLT");
@@ -185,7 +185,7 @@ u64 arch_irq_stat_cpu(unsigned int cpu)
 	sum += irq_stats(cpu)->apic_timer_irqs;
 	sum += irq_stats(cpu)->irq_spurious_count;
 	sum += irq_stats(cpu)->apic_perf_irqs;
-	sum += irq_stats(cpu)->apic_pending_irqs;
+	sum += irq_stats(cpu)->apic_irq_work_irqs;
 #endif
 	if (x86_platform_ipi_callback)
 		sum += irq_stats(cpu)->x86_platform_ipis;



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH -tip -v4] irq_work: generic hard-irq context callbacks
  2010-09-13  6:50 [PATCH -tip -v4] irq_work: generic hard-irq context callbacks Huang Ying
@ 2010-09-13  9:18 ` Peter Zijlstra
  2010-09-13 10:32 ` Martin Schwidefsky
  1 sibling, 0 replies; 18+ messages in thread
From: Peter Zijlstra @ 2010-09-13  9:18 UTC (permalink / raw)
  To: Huang Ying
  Cc: Ingo Molnar, H. Peter Anvin, paulus, linux-kernel, Andi Kleen,
	dhowells, Russell King, Kyle McMartin, Martin Schwidefsky, davem,
	Linux-Arch

On Mon, 2010-09-13 at 14:50 +0800, Huang Ying wrote:
> 
> In order for other NMI context users that want to run things from
> hard-IRQ context, extract the perf_event callback mechanism.
> 
> Huang Ying: some fixes
> 
> This patch is only tested on x86 platform.


Anybody willing to take a peek at this?

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH -tip -v4] irq_work: generic hard-irq context callbacks
  2010-09-13  6:50 [PATCH -tip -v4] irq_work: generic hard-irq context callbacks Huang Ying
  2010-09-13  9:18 ` Peter Zijlstra
@ 2010-09-13 10:32 ` Martin Schwidefsky
  2010-09-13 11:36   ` Peter Zijlstra
  1 sibling, 1 reply; 18+ messages in thread
From: Martin Schwidefsky @ 2010-09-13 10:32 UTC (permalink / raw)
  To: Huang Ying
  Cc: Ingo Molnar, H. Peter Anvin, Peter Zijlstra, paulus,
	linux-kernel, Andi Kleen, dhowells, Russell King, Kyle McMartin,
	davem, Linux-Arch

On Mon, 13 Sep 2010 14:50:48 +0800
Huang Ying <ying.huang@intel.com> wrote:

> From:  Peter Zijlstra <a.p.zijlstra@chello.nl>
> 
> In order for other NMI context users that want to run things from
> hard-IRQ context, extract the perf_event callback mechanism.
> 
> Huang Ying: some fixes
> 
> This patch is only tested on x86 platform.
> 
> 
> v4:
> 
> -rebased on latest -tip tree
> 
> Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
> Signed-off-by: Huang Ying <ying.huang@intel.com>

On s390 I get compile errors:

include/linux/perf_event.h:464:29: error: asm/perf_event.h: No such file or directory

Not a good idea to completely remove the perf_event.h from arch/s390/include/asm.
With an empty header file the kernel at least compiles.

-- 
blue skies,
   Martin.

"Reality continues to ruin my life." - Calvin.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH -tip -v4] irq_work: generic hard-irq context callbacks
  2010-09-13 10:32 ` Martin Schwidefsky
@ 2010-09-13 11:36   ` Peter Zijlstra
  2010-09-15  5:29     ` Huang Ying
  0 siblings, 1 reply; 18+ messages in thread
From: Peter Zijlstra @ 2010-09-13 11:36 UTC (permalink / raw)
  To: Martin Schwidefsky
  Cc: Huang Ying, Ingo Molnar, H. Peter Anvin, paulus, linux-kernel,
	Andi Kleen, dhowells, Russell King, Kyle McMartin, davem,
	Linux-Arch

On Mon, 2010-09-13 at 12:32 +0200, Martin Schwidefsky wrote:
> On Mon, 13 Sep 2010 14:50:48 +0800
> Huang Ying <ying.huang@intel.com> wrote:
> 
> > From:  Peter Zijlstra <a.p.zijlstra@chello.nl>
> > 
> > In order for other NMI context users that want to run things from
> > hard-IRQ context, extract the perf_event callback mechanism.
> > 
> > Huang Ying: some fixes
> > 
> > This patch is only tested on x86 platform.
> > 
> > 
> > v4:
> > 
> > -rebased on latest -tip tree
> > 
> > Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
> > Signed-off-by: Huang Ying <ying.huang@intel.com>
> 
> On s390 I get compile errors:
> 
> include/linux/perf_event.h:464:29: error: asm/perf_event.h: No such file or directory
> 
> Not a good idea to completely remove the perf_event.h from arch/s390/include/asm.
> With an empty header file the kernel at least compiles.

Urgh, Huang, could you at least compile test the other arches?

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH -tip -v4] irq_work: generic hard-irq context callbacks
  2010-09-13 11:36   ` Peter Zijlstra
@ 2010-09-15  5:29     ` Huang Ying
  2010-09-15  7:51       ` Martin Schwidefsky
  2010-09-15  8:28       ` Peter Zijlstra
  0 siblings, 2 replies; 18+ messages in thread
From: Huang Ying @ 2010-09-15  5:29 UTC (permalink / raw)
  To: Peter Zijlstra
  Cc: Martin Schwidefsky, Ingo Molnar, H. Peter Anvin, paulus,
	linux-kernel, Andi Kleen, dhowells, Russell King, Kyle McMartin,
	davem, Linux-Arch

[-- Attachment #1: Type: text/plain, Size: 1601 bytes --]

On Mon, 2010-09-13 at 19:36 +0800, Peter Zijlstra wrote:
> On Mon, 2010-09-13 at 12:32 +0200, Martin Schwidefsky wrote:
> > On Mon, 13 Sep 2010 14:50:48 +0800
> > Huang Ying <ying.huang@intel.com> wrote:
> > 
> > > From:  Peter Zijlstra <a.p.zijlstra@chello.nl>
> > > 
> > > In order for other NMI context users that want to run things from
> > > hard-IRQ context, extract the perf_event callback mechanism.
> > > 
> > > Huang Ying: some fixes
> > > 
> > > This patch is only tested on x86 platform.
> > > 
> > > 
> > > v4:
> > > 
> > > -rebased on latest -tip tree
> > > 
> > > Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
> > > Signed-off-by: Huang Ying <ying.huang@intel.com>
> > 
> > On s390 I get compile errors:
> > 
> > include/linux/perf_event.h:464:29: error: asm/perf_event.h: No such file or directory
> > 
> > Not a good idea to completely remove the perf_event.h from arch/s390/include/asm.
> > With an empty header file the kernel at least compiles.
> 
> Urgh, Huang, could you at least compile test the other arches?

I uses the cross build tool from:

http://www.kernel.org/pub/tools/crosstool/

But I get compile errors on s390 and alpha even for tip/master
(ce0c65112d37ff04016b4e0962a406281640739b). The build logs are attached.

Do I use the wrong git tree? Or we should fix tip/master firstly?

And frv and sh have compile error even for linus/master and 2.6.35. So I
can not compile test for these arches.

Do I use the wrong cross tool?

The kernel configuration is generated as follow:

make defconfig
./scripts/config --enable perf_events

Best Regards,
Huang Ying


[-- Attachment #2: log_alpha --]
[-- Type: text/plain, Size: 37492 bytes --]

make -C /home/caritas/projects/mce/kernel/linux-mce.git O=/home/caritas/projects/mce/kernel/build-cross/obj-alpha/. 
  GEN     /home/caritas/projects/mce/kernel/build-cross/obj-alpha/Makefile
  HOSTCC  scripts/basic/fixdep
  HOSTCC  scripts/basic/hash
  HOSTCC  scripts/basic/docproc
  HOSTCC  scripts/kconfig/conf.o
  HOSTCC  scripts/kconfig/kxgettext.o
  HOSTCC  scripts/kconfig/zconf.tab.o
  HOSTLD  scripts/kconfig/conf
scripts/kconfig/conf --silentoldconfig arch/alpha/Kconfig
  GEN     /home/caritas/projects/mce/kernel/build-cross/obj-alpha/Makefile
  CHK     include/linux/version.h
  UPD     include/linux/version.h
  Using /home/caritas/projects/mce/kernel/linux-mce.git as source for kernel
  CHK     include/generated/utsrelease.h
  UPD     include/generated/utsrelease.h
  HOSTCC  scripts/kallsyms
  HOSTCC  scripts/conmakehash
  CC      scripts/mod/empty.o
  HOSTCC  scripts/mod/mk_elfconfig
  CC      kernel/bounds.s
  MKELF   scripts/mod/elfconfig.h
  HOSTCC  scripts/mod/file2alias.o
  HOSTCC  scripts/mod/modpost.o
  HOSTCC  scripts/mod/sumversion.o
  GEN     include/generated/bounds.h
  CC      arch/alpha/kernel/asm-offsets.s
  HOSTLD  scripts/mod/modpost
  GEN     include/generated/asm-offsets.h
  CALL    /home/caritas/projects/mce/kernel/linux-mce.git/scripts/checksyscalls.sh
<stdin>:1526:2: warning: #warning syscall fanotify_init not implemented
<stdin>:1530:2: warning: #warning syscall fanotify_mark not implemented
<stdin>:1534:2: warning: #warning syscall prlimit64 not implemented
  CHK     include/generated/compile.h
  CC      init/main.o
  CC      init/do_mounts.o
  CC      init/noinitramfs.o
  CC      init/calibrate.o
  LD      usr/built-in.o
  AS      arch/alpha/kernel/entry.o
  CC      arch/alpha/kernel/traps.o
  CC      arch/alpha/kernel/process.o
  CC      arch/alpha/kernel/init_task.o
  CC      arch/alpha/kernel/osf_sys.o
  CC      arch/alpha/kernel/irq.o
  CC      arch/alpha/kernel/irq_alpha.o
  CC      arch/alpha/kernel/signal.o
  CC      arch/alpha/mm/init.o
  CC      arch/alpha/kernel/setup.o
  CC      arch/alpha/mm/fault.o
  CC      arch/alpha/kernel/ptrace.o
  CC      arch/alpha/mm/extable.o
  CC      arch/alpha/kernel/time.o
  CC      arch/alpha/kernel/alpha_ksyms.o
  AS      arch/alpha/kernel/systbls.o
  CC      arch/alpha/kernel/err_common.o
  CC      arch/alpha/math-emu/math.o
  CC      arch/alpha/kernel/io.o
  CC      arch/alpha/kernel/console.o
  AS      arch/alpha/math-emu/qrnnd.o
  CC      arch/alpha/kernel/pci.o
  CC      kernel/sched.o
  CC      arch/alpha/kernel/pci_iommu.o
  CC      kernel/fork.o
  CC      mm/bootmem.o
  CC      arch/alpha/kernel/pci-sysfs.o
  CC      mm/filemap.o
  CC      kernel/exec_domain.o
  CC      mm/mempool.o
  CC      arch/alpha/kernel/module.o
  CC      kernel/panic.o
  CC      kernel/printk.o
  CC      mm/oom_kill.o
  CC      kernel/cpu.o
  CC      kernel/exit.o
  CC      arch/alpha/kernel/perf_event.o
  CC      mm/fadvise.o
  CC      arch/alpha/kernel/core_apecs.o
  CC      mm/maccess.o
  CC      kernel/itimer.o
  TIMEC   kernel/timeconst.h
  CC      mm/page_alloc.o
  CC      arch/alpha/kernel/core_cia.o
  CC      arch/alpha/kernel/core_irongate.o
  CC      kernel/softirq.o
  CC      mm/page-writeback.o
  CC      kernel/resource.o
  CC      mm/readahead.o
  CC      arch/alpha/kernel/core_lca.o
  CC      kernel/sysctl.o
  CC      mm/swap.o
  CC      kernel/sysctl_binary.o
  CC      arch/alpha/kernel/core_mcpcia.o
  CC      mm/truncate.o
  CC      kernel/capability.o
  CC      mm/vmscan.o
  CC      arch/alpha/kernel/core_polaris.o
  CC      ipc/util.o
  CC      kernel/ptrace.o
  CC      arch/alpha/kernel/core_t2.o
  CC      security/commoncap.o
  UPD     include/generated/compile.h
  CC      fs/open.o
  CC      init/version.o
  CC      mm/shmem.o
  CC      arch/alpha/kernel/core_tsunami.o
  CC      arch/alpha/kernel/sys_alcor.o
  CC      arch/alpha/kernel/sys_cabriolet.o
  CC      arch/alpha/kernel/sys_dp264.o
  CC      kernel/timer.o
  CC      mm/prio_tree.o
  CC      arch/alpha/kernel/sys_eb64p.o
  CC      arch/alpha/kernel/sys_eiger.o
/home/caritas/projects/mce/kernel/linux-mce.git/arch/alpha/kernel/perf_event.c: In function 'alpha_pmu_add':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/alpha/kernel/perf_event.c:427: error: 'flags' redeclared as different kind of symbol
/home/caritas/projects/mce/kernel/linux-mce.git/arch/alpha/kernel/perf_event.c:422: note: previous definition of 'flags' was here
/home/caritas/projects/mce/kernel/linux-mce.git/arch/alpha/kernel/perf_event.c:457: error: 'hwc' undeclared (first use in this function)
/home/caritas/projects/mce/kernel/linux-mce.git/arch/alpha/kernel/perf_event.c:457: error: (Each undeclared identifier is reported only once
/home/caritas/projects/mce/kernel/linux-mce.git/arch/alpha/kernel/perf_event.c:457: error: for each function it appears in.)
/home/caritas/projects/mce/kernel/linux-mce.git/arch/alpha/kernel/perf_event.c: In function 'alpha_pmu_del':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/alpha/kernel/perf_event.c:477: error: 'flags' redeclared as different kind of symbol
/home/caritas/projects/mce/kernel/linux-mce.git/arch/alpha/kernel/perf_event.c:473: note: previous definition of 'flags' was here
  CC      arch/alpha/kernel/sys_jensen.o
make[3]: *** [arch/alpha/kernel/perf_event.o] Error 1
make[3]: *** Waiting for unfinished jobs....
  CC      kernel/user.o
  CC      mm/util.o
  CC      mm/mmzone.o
  CC      crypto/api.o
  CC      ipc/msgutil.o
  CC      kernel/signal.o
  CC      block/elevator.o
  CC      block/blk-core.o
  CC      fs/read_write.o
  CC      block/blk-tag.o
  CC      mm/vmstat.o
  CC      kernel/sys.o
  CC      mm/backing-dev.o
  CC      kernel/kmod.o
  CC      fs/file_table.o
  CC      mm/page_isolation.o
  CC      mm/mm_init.o
  CC      fs/super.o
  CC      kernel/workqueue.o
  LD      arch/alpha/mm/built-in.o
  CC      mm/mmu_context.o
  CC      security/min_addr.o
  CC      mm/fremap.o
  CC      mm/highmem.o
  CC      block/blk-sysfs.o
  CC      fs/char_dev.o
  LD      sound/built-in.o
  CC      kernel/pid.o
  CC      block/blk-barrier.o
  CC      kernel/rcupdate.o
  CC      crypto/cipher.o
  CC      block/blk-settings.o
  CC      block/blk-ioc.o
  LD      firmware/built-in.o
  CC      crypto/compress.o
  CC      mm/madvise.o
  CC      fs/stat.o
  CC      kernel/extable.o
  CC      ipc/msg.o
  CC      ipc/sem.o
  CC      ipc/shm.o
  CC      ipc/ipcns_notifier.o
  CC      mm/memory.o
  CC      ipc/syscall.o
  CC      mm/mincore.o
  CC      lib/bcd.o
  CC      ipc/ipc_sysctl.o
  LD      drivers/auxdisplay/built-in.o
  LD      arch/alpha/math-emu/math-emu.o
  CC      net/socket.o
  CC      kernel/params.o
  LD      arch/alpha/math-emu/built-in.o
  CC      mm/mlock.o
  CC      fs/exec.o
  CC      lib/div64.o
  CC      kernel/posix-timers.o
  CC      mm/mmap.o
  CC      mm/mprotect.o
  CC      lib/sort.o
  CC      kernel/kthread.o
  CC      drivers/base/core.o
  CC      fs/pipe.o
  LD      security/built-in.o
  CC      kernel/wait.o
  CC      fs/namei.o
  LD      arch/alpha/lib/built-in.o
  CC      mm/mremap.o
  CC      drivers/base/sys.o
alpha-linux-gcc -Wp,-MD,arch/alpha/lib/.__divlu.o.d  -nostdinc -isystem /usr/local/gcc-4.4.0-nolibc/alpha-linux/bin/../lib/gcc/alpha-linux/4.4.0/include -I/home/caritas/projects/mce/kernel/linux-mce.git/arch/alpha/include -Iinclude  -I/home/caritas/projects/mce/kernel/linux-mce.git/include -include include/generated/autoconf.h -D__KERNEL__ -D__ASSEMBLY__ -gdwarf-2 -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -O2 -pipe -mno-fp-regs -ffixed-8 -msmall-data -fno-jump-tables -mcpu=ev5 -Wa,-mev6 -Wframe-larger-than=2048 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -DDIV -DINTSIZE   -c -o arch/alpha/lib/__divlu.o /home/caritas/projects/mce/kernel/linux-mce.git/arch/alpha/lib/divide.S
alpha-linux-gcc -Wp,-MD,arch/alpha/lib/.__divqu.o.d  -nostdinc -isystem /usr/local/gcc-4.4.0-nolibc/alpha-linux/bin/../lib/gcc/alpha-linux/4.4.0/include -I/home/caritas/projects/mce/kernel/linux-mce.git/arch/alpha/include -Iinclude  -I/home/caritas/projects/mce/kernel/linux-mce.git/include -include include/generated/autoconf.h -D__KERNEL__ -D__ASSEMBLY__ -gdwarf-2 -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -O2 -pipe -mno-fp-regs -ffixed-8 -msmall-data -fno-jump-tables -mcpu=ev5 -Wa,-mev6 -Wframe-larger-than=2048 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -DDIV   -c -o arch/alpha/lib/__divqu.o /home/caritas/projects/mce/kernel/linux-mce.git/arch/alpha/lib/divide.S
  CC      kernel/kfifo.o
  CC      mm/msync.o
  LD      net/802/built-in.o
alpha-linux-gcc -Wp,-MD,arch/alpha/lib/.__remlu.o.d  -nostdinc -isystem /usr/local/gcc-4.4.0-nolibc/alpha-linux/bin/../lib/gcc/alpha-linux/4.4.0/include -I/home/caritas/projects/mce/kernel/linux-mce.git/arch/alpha/include -Iinclude  -I/home/caritas/projects/mce/kernel/linux-mce.git/include -include include/generated/autoconf.h -D__KERNEL__ -D__ASSEMBLY__ -gdwarf-2 -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -O2 -pipe -mno-fp-regs -ffixed-8 -msmall-data -fno-jump-tables -mcpu=ev5 -Wa,-mev6 -Wframe-larger-than=2048 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -DREM -DINTSIZE   -c -o arch/alpha/lib/__remlu.o /home/caritas/projects/mce/kernel/linux-mce.git/arch/alpha/lib/divide.S
  CC      mm/rmap.o
alpha-linux-gcc -Wp,-MD,arch/alpha/lib/.__remqu.o.d  -nostdinc -isystem /usr/local/gcc-4.4.0-nolibc/alpha-linux/bin/../lib/gcc/alpha-linux/4.4.0/include -I/home/caritas/projects/mce/kernel/linux-mce.git/arch/alpha/include -Iinclude  -I/home/caritas/projects/mce/kernel/linux-mce.git/include -include include/generated/autoconf.h -D__KERNEL__ -D__ASSEMBLY__ -gdwarf-2 -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -O2 -pipe -mno-fp-regs -ffixed-8 -msmall-data -fno-jump-tables -mcpu=ev5 -Wa,-mev6 -Wframe-larger-than=2048 -fno-stack-protector -fomit-frame-pointer -g -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -DREM   -c -o arch/alpha/lib/__remqu.o /home/caritas/projects/mce/kernel/linux-mce.git/arch/alpha/lib/divide.S
  CC      kernel/sys_ni.o
  LD      init/mounts.o
make[2]: *** [arch/alpha/kernel] Error 2
make[2]: *** Waiting for unfinished jobs....
  CC      lib/parser.o
  LD      init/built-in.o
  AS      arch/alpha/lib/callback_srm.o
  CC      fs/fcntl.o
  CC      crypto/algapi.o
  CC      ipc/mqueue.o
  CC      drivers/base/bus.o
  CC      arch/alpha/lib/checksum.o
  CC      fs/ioctl.o
  CC      fs/readdir.o
  CC      block/blk-map.o
  CC      drivers/block/floppy.o
  CC      fs/select.o
  CC      block/blk-exec.o
  CC      kernel/posix-cpu-timers.o
  CC      kernel/mutex.o
  CC      block/blk-merge.o
  CC      kernel/hrtimer.o
  CC      lib/halfmd4.o
  CC      net/8021q/vlan_core.o
  CC      kernel/rwsem.o
  CC      crypto/scatterwalk.o
  CC      lib/debug_locks.o
  CC [M]  drivers/block/loop.o
  CC [M]  net/8021q/vlan.o
  CC      lib/random32.o
  CC      mm/vmalloc.o
  CC      kernel/nsproxy.o
  CC      drivers/base/dd.o
  CC      kernel/srcu.o
  CC      mm/pagewalk.o
  CC      lib/bust_spinlocks.o
  CC      kernel/semaphore.o
  CC      mm/init-mm.o
  CC      mm/bounce.o
  CC      lib/hexdump.o
  CC      fs/fifo.o
  CC      lib/kasprintf.o
  CC      kernel/notifier.o
  CC      kernel/ksysfs.o
  CC      ipc/mq_sysctl.o
  CC      kernel/pm_qos_params.o
  CC      lib/bitmap.o
  CC      drivers/base/driver.o
  AS      arch/alpha/lib/clear_page.o
  CC      mm/page_io.o
  CC      block/blk-softirq.o
  CC      kernel/sched_clock.o
  CC      mm/swap_state.o
  CC      block/blk-timeout.o
  CC      kernel/cred.o
  CC      fs/dcache.o
  CC      drivers/base/class.o
  AS      arch/alpha/lib/clear_user.o
  CC      kernel/async.o
  CC      kernel/range.o
  CC      fs/inode.o
  AS      arch/alpha/lib/copy_page.o
  CC      block/blk-iopoll.o
  CC      drivers/base/platform.o
  CC      lib/scatterlist.o
  CC      drivers/cdrom/cdrom.o
  CC      kernel/groups.o
  CC      mm/swapfile.o
  CC      mm/thrash.o
  CC      kernel/irq/handle.o
  AS      arch/alpha/lib/copy_user.o
  CC      kernel/time/timekeeping.o
  CC      kernel/futex.o
  CC      drivers/base/cpu.o
  CC      kernel/time/ntp.o
  CC [M]  net/8021q/vlan_dev.o
  CC      kernel/rtmutex.o
  CC      fs/attr.o
  CC      drivers/base/firmware.o
  CC      kernel/dma.o
  CC [M]  net/8021q/vlan_netlink.o
  AS      arch/alpha/lib/csum_ipv6_magic.o
  CC      mm/dmapool.o
  CC      block/blk-lib.o
  CC      crypto/proc.o
  CC      fs/bad_inode.o
  CC      kernel/up.o
/home/caritas/projects/mce/kernel/linux-mce.git/kernel/irq/handle.c:432:3: warning: #warning __do_IRQ is deprecated. Please convert to proper flow handlers
  CC      kernel/module.o
  CC      block/ioctl.o
  CC      fs/file.o
  CC      arch/alpha/lib/csum_partial_copy.o
  CC      crypto/ablkcipher.o
  CC      fs/filesystems.o
  CC      mm/slub.o
  CC [M]  net/8021q/vlanproc.o
  CC      crypto/blkcipher.o
  CC      lib/string_helpers.o
  CC      crypto/ahash.o
  LD      net/8021q/built-in.o
  CC      block/genhd.o
  CC      kernel/kallsyms.o
  CC      mm/percpu_up.o
  CC      lib/gcd.o
  CC      net/core/sock.o
  CC      net/ethernet/eth.o
  CC      kernel/rcutiny.o
  CC      net/core/request_sock.o
  CC      net/ipv4/route.o
  CC      kernel/utsname_sysctl.o
  CC      net/ipv4/inetpeer.o
  CC      block/scsi_ioctl.o
  CC      net/core/skbuff.o
  CC      net/ipv4/protocol.o
  CC      block/bsg.o
  LD      net/key/built-in.o
  CC      kernel/elfcore.o
  CC      kernel/irq/manage.o
  CC [M]  net/key/af_key.o
  CC      kernel/time/clocksource.o
  CC      lib/lcm.o
  CC      drivers/char/mem.o
  CC      block/noop-iosched.o
  CC      kernel/perf_event.o
  CC      fs/namespace.o
  CC      kernel/time.o
  CC      lib/list_sort.o
  CC      fs/seq_file.o
  CC      lib/uuid.o
  CC      kernel/irq/spurious.o
  LD      drivers/clocksource/built-in.o
  CC      block/deadline-iosched.o
  CC      block/cfq-iosched.o
  CC      fs/xattr.o
  LD      drivers/crypto/built-in.o
  CC      arch/alpha/lib/fls.o
  CC      fs/libfs.o
  CC      fs/fs-writeback.o
  GEN     drivers/eisa/devlist.h
  LD      drivers/firmware/built-in.o
  CC      drivers/eisa/pci_eisa.o
  CC      net/core/iovec.o
  CC      kernel/irq/resend.o
  CC      arch/alpha/lib/fpreg.o
  CC      lib/iomap_copy.o
  CC      drivers/eisa/virtual_root.o
  CC      drivers/base/init.o
  CC      kernel/irq/chip.o
  CC      net/ipv4/ip_input.o
  CC      kernel/irq/devres.o
  CC      net/ipv4/ip_fragment.o
  CC      net/netfilter/core.o
  CC      crypto/shash.o
  CC      drivers/base/map.o
  CC      fs/pnode.o
  CC      drivers/char/random.o
  CC      net/netfilter/nf_log.o
/home/caritas/projects/mce/kernel/linux-mce.git/kernel/perf_event.c:92: warning: 'perf_pmu_rotate_stop' defined but not used
  CC      drivers/base/devres.o
  CC      net/ipv4/ip_forward.o
  AS      arch/alpha/lib/memchr.o
  CC      fs/drop_caches.o
  CC      drivers/base/attribute_container.o
  CC      kernel/time/jiffies.o
  CC      kernel/time/timer_list.o
  CC      lib/devres.o
  CC      net/core/datagram.o
  CC      net/ipv4/ip_options.o
  CC      kernel/irq/autoprobe.o
  CC      arch/alpha/lib/memcpy.o
  CC      drivers/eisa/eisa-bus.o
  CC      drivers/char/tty_io.o
  CC      drivers/base/transport_class.o
  CC      lib/find_last_bit.o
  LD      drivers/gpio/built-in.o
  CC      kernel/irq/proc.o
  CC      fs/splice.o
  CC      drivers/char/n_tty.o
  CC      lib/hweight.o
  CC      net/ipv4/ip_output.o
  CC      kernel/time/timecompare.o
  LD      drivers/base/power/built-in.o
  AS      arch/alpha/lib/memmove.o
  LD      net/ethernet/built-in.o
  CC      crypto/algboss.o
  LD      ipc/built-in.o
  CC      net/netlink/af_netlink.o
  AS      arch/alpha/lib/memset.o
  CC      crypto/testmgr.o
  CC      drivers/base/dma-mapping.o
  LD      drivers/gpu/drm/i2c/built-in.o
  CC      net/core/stream.o
  CC      net/packet/af_packet.o
  CC      lib/bitrev.o
  CC      drivers/char/tty_ioctl.o
  CC      arch/alpha/lib/srm_printk.o
  CC      crypto/crypto_wq.o
  LD [M]  net/8021q/8021q.o
  CC      fs/sync.o
  CC      drivers/char/tty_ldisc.o
  HOSTCC  lib/gen_crc32table
  LD      drivers/gpu/drm/built-in.o
  CC      net/ipv4/ip_sockglue.o
  CC      net/netfilter/nf_queue.o
  CC      kernel/time/timeconv.o
  CC      drivers/base/isa.o
  CC      net/core/scm.o
  CC      drivers/base/firmware_class.o
  CC      arch/alpha/lib/srm_puts.o
  CC      net/netfilter/nf_sockopt.o
  CC      drivers/gpu/vga/vgaarb.o
  CC      net/sched/sch_generic.o
  CC      crypto/aead.o
  CC      drivers/base/module.o
  LD      kernel/irq/built-in.o
  CC      lib/iommu-helper.o
  CC      fs/utimes.o
  AS      arch/alpha/lib/strcat.o
  CC      net/ipv4/inet_hashtables.o
  CC      net/core/gen_stats.o
  CC      net/netlink/genetlink.o
  CC      crypto/chainiv.o
  CC      lib/nlattr.o
  AS      arch/alpha/lib/strchr.o
  CC      drivers/hwmon/hwmon.o
  CC      drivers/hid/hid-core.o
  CC      drivers/hid/hid-input.o
  AS      arch/alpha/lib/strcpy.o
  CC      crypto/eseqiv.o
  CC      net/core/gen_estimator.o
  CC      fs/stack.o
  LD      drivers/i2c/algos/built-in.o
  CC      crypto/pcompress.o
  CC      crypto/hmac.o
  AS      arch/alpha/lib/strlen.o
  CC      net/sched/sch_mq.o
  CC      fs/fs_struct.o
  LD      drivers/i2c/busses/built-in.o
  AS      arch/alpha/lib/strlen_user.o
  LD      drivers/i2c/muxes/built-in.o
  LD      kernel/time/built-in.o
  CC [M]  net/netfilter/x_tables.o
  CC [M]  net/netfilter/xt_tcpudp.o
  AS      arch/alpha/lib/strncat.o
  CC      net/core/net_namespace.o
  LD      drivers/i2c/built-in.o
  CC      net/ipv4/inet_timewait_sock.o
  AS      arch/alpha/lib/strncpy.o
  CC      net/ipv4/inet_connection_sock.o
  CC      crypto/rng.o
  LD      drivers/hwmon/built-in.o
  LD      drivers/eisa/built-in.o
  LD      drivers/idle/built-in.o
  LD      drivers/ieee1394/built-in.o
  LD      net/sunrpc/built-in.o
  CC      fs/statfs.o
  CC [M]  net/sunrpc/clnt.o
  AS      arch/alpha/lib/strncpy_from_user.o
  LD      drivers/ieee802154/built-in.o
  CC [M]  net/sunrpc/xprt.o
  CC      crypto/krng.o
  CC      fs/buffer.o
  CC      net/core/sysctl_net_core.o
  CC [M]  crypto/md5.o
  CC      net/core/dev.o
  AS      arch/alpha/lib/strrchr.o
  CC      net/core/ethtool.o
  CC      drivers/input/serio/serio.o
  LD      drivers/lguest/built-in.o
  AS      arch/alpha/lib/stxcpy.o
  CC      drivers/input/input.o
  LD      net/netfilter/netfilter.o
  CC      net/ipv4/tcp.o
  CC      lib/argv_split.o
  LD      drivers/cdrom/built-in.o
  LD      drivers/macintosh/built-in.o
  LD      net/netfilter/built-in.o
  AS      arch/alpha/lib/stxncpy.o
  CC [M]  net/sunrpc/socklib.o
  CC      arch/alpha/lib/udelay.o
  CC      drivers/ide/ide-cd.o
  CC      drivers/char/tty_buffer.o
  CC [M]  crypto/sha1_generic.o
  CC      net/ipv4/tcp_input.o
  CC      lib/cmdline.o
  CC      drivers/input/serio/i8042.o
  CC [M]  crypto/cbc.o
  LD      drivers/mfd/built-in.o
  LD      net/wireless/built-in.o
  CC      net/ipv4/tcp_output.o
  CC      net/core/dev_addr_lists.o
  LD      drivers/media/IR/keymaps/built-in.o
  CC      net/ipv4/tcp_timer.o
  CC      net/xfrm/xfrm_policy.o
  LD      drivers/gpu/vga/built-in.o
  LD      drivers/media/IR/built-in.o
  LD      drivers/gpu/built-in.o
  LD      drivers/misc/cb710/built-in.o
  LD      mm/built-in.o
  LD      drivers/misc/eeprom/built-in.o
  CC      net/sysctl_net.o
  CC      lib/ctype.o
  LD      drivers/misc/built-in.o
  CC [M]  crypto/des_generic.o
  LD      drivers/media/common/tuners/built-in.o
  CC      lib/dec_and_lock.o
  CC      drivers/net/mii.o
  CC      drivers/ide/ide-cd_ioctl.o
  AR      arch/alpha/lib/lib.a
  CC      drivers/ide/ide-cd_verbose.o
  CC [M]  crypto/aes_generic.o
  CC      lib/decompress.o
  LD      drivers/base/built-in.o
  CC      net/core/dst.o
  CC      net/xfrm/xfrm_state.o
  LD      drivers/media/common/built-in.o
  CC      net/core/netevent.o
  CC [M]  crypto/authenc.o
  CC      drivers/input/input-compat.o
  CC [M]  net/sunrpc/xprtsock.o
  CC      net/core/neighbour.o
  CC      drivers/pci/access.o
  CC      net/xfrm/xfrm_hash.o
  LD      drivers/media/video/davinci/built-in.o
  CC      lib/dump_stack.o
  CC      drivers/char/tty_port.o
  CC      drivers/ide/ide.o
  CC      net/ipv4/tcp_ipv4.o
  LD      drivers/media/video/built-in.o
  CC      lib/extable.o
  CC [M]  crypto/ansi_cprng.o
  CC      drivers/ide/ide-ioctls.o
  LD      net/sched/built-in.o
  LD      drivers/media/built-in.o
  CC      net/core/rtnetlink.o
  LD      drivers/platform/built-in.o
  CC      fs/bio.o
  CC      lib/find_next_bit.o
  CC      drivers/char/tty_mutex.o
  CC      drivers/input/ff-core.o
  CC      drivers/char/pty.o
  CC      fs/block_dev.o
  CC      drivers/ide/ide-io.o
  CC      drivers/net/3c59x.o
  CC      net/unix/af_unix.o
  LD      drivers/block/built-in.o
  CC      net/xfrm/xfrm_input.o
  CC      lib/flex_array.o
  CC      net/core/utils.o
  LD      net/packet/built-in.o
  CC      drivers/input/serio/serport.o
  CC      drivers/pnp/core.o
  CC      net/unix/garbage.o
  CC      drivers/pnp/card.o
  CC      net/ipv4/tcp_minisocks.o
  CC      net/ipv4/tcp_cong.o
  LD      net/netlink/built-in.o
  CC      drivers/ide/ide-iops.o
  CC      drivers/input/mousedev.o
  CC      net/core/link_watch.o
  CC      drivers/pnp/driver.o
  CC      net/core/filter.o
  CC      drivers/input/keyboard/atkbd.o
  CC      net/ipv4/datagram.o
  CC      net/ipv4/raw.o
  CC      drivers/pnp/resource.o
  CC      drivers/pci/bus.o
  LD      kernel/built-in.o
  CC      drivers/input/mouse/psmouse-base.o
  CC      net/ipv4/udp.o
  CC      drivers/ide/ide-lib.o
  CC      lib/idr.o
  CC      drivers/ide/ide-probe.o
  CC      drivers/ide/ide-taskfile.o
  CC      fs/direct-io.o
  CC      net/core/flow.o
  CC      drivers/ide/ide-pm.o
  CC      lib/int_sqrt.o
  CC [M]  net/sunrpc/sched.o
  CC      net/core/net-sysfs.o
  CC [M]  net/sunrpc/auth.o
  LD      block/built-in.o
  CC      drivers/input/serio/libps2.o
  CC      drivers/char/misc.o
  CC      drivers/char/vt_ioctl.o
  CC      drivers/pci/probe.o
  LD      crypto/crypto.o
  CC      drivers/pci/remove.o
  CC      drivers/net/yellowfin.o
  CC      drivers/pci/pci.o
  LD      drivers/hid/hid.o
  CC      drivers/input/mouse/synaptics.o
  LD      drivers/hid/built-in.o
  CC      drivers/scsi/scsi.o
  CC      net/xfrm/xfrm_output.o
  CC      drivers/serial/serial_core.o
  CC      drivers/pnp/manager.o
  CC      drivers/ide/ide-park.o
  CC      fs/mpage.o
  CC      drivers/char/vc_screen.o
  CC      drivers/net/Space.o
  CC      drivers/ide/ide-sysfs.o
  LD      crypto/crypto_algapi.o
  CC      lib/ioremap.o
  LD      crypto/crypto_blkcipher.o
  CC      drivers/scsi/hosts.o
  LD      crypto/crypto_hash.o
  LD      crypto/cryptomgr.o
  CC      drivers/ide/ide-devsets.o
  CC      drivers/scsi/scsi_ioctl.o
  LD      crypto/built-in.o
  CC      lib/irq_regs.o
  CC [M]  net/sunrpc/auth_null.o
  CC      fs/ioprio.o
  CC      drivers/ide/ide-io-std.o
  CC      fs/devpts/inode.o
  CC      drivers/usb/host/pci-quirks.o
  LD      fs/autofs/built-in.o
  CC      lib/is_single_threaded.o
  CC      drivers/video/fb_notify.o
  CC [M]  fs/autofs/dirhash.o
  CC      drivers/input/mouse/alps.o
  LD      drivers/input/serio/built-in.o
  LD      drivers/input/keyboard/built-in.o
  CC      drivers/ide/ide-eh.o
  CC [M]  fs/autofs/init.o
  LD      drivers/video/backlight/built-in.o
  CC      drivers/input/mouse/logips2pp.o
  CC      drivers/video/console/dummycon.o
  CC      lib/klist.o
  CC      drivers/net/loopback.o
  CC      drivers/pci/pci-driver.o
  CC      drivers/pnp/support.o
  LD      drivers/net/wireless/built-in.o
  CC      lib/kobject.o
  CC      drivers/ide/ide-pio-blacklist.o
  CC [M]  drivers/net/dummy.o
  CC      drivers/net/tulip/eeprom.o
  CC      drivers/pnp/interface.o
  CC      lib/kobject_uevent.o
  CC      net/unix/sysctl_net_unix.o
  CC      net/xfrm/xfrm_algo.o
  CC      drivers/pnp/quirks.o
  CC      drivers/ide/ide-xfer-mode.o
  CC      drivers/input/mouse/trackpoint.o
  CC      net/ipv4/udplite.o
  CC      drivers/char/selection.o
  LD      drivers/input/input-core.o
  CC      net/ipv4/arp.o
  CC      drivers/char/keyboard.o
  CC      drivers/net/tulip/interrupt.o
  CC [M]  net/sunrpc/auth_unix.o
  LD      fs/devpts/devpts.o
  CC      lib/kref.o
  CC      drivers/video/console/vgacon.o
  LD      fs/devpts/built-in.o
  CC      drivers/serial/8250.o
  CC      drivers/net/tulip/media.o
  CC      drivers/char/consolemap.o
  LD      drivers/video/display/built-in.o
  CC      drivers/serial/8250_pnp.o
  CC [M]  net/sunrpc/auth_generic.o
  LD      fs/exportfs/built-in.o
  CC [M]  fs/autofs/inode.o
  CC [M]  fs/exportfs/expfs.o
  CC      drivers/ide/ide-timings.o
  CC      net/ipv4/icmp.o
  CC [M]  net/sunrpc/svc.o
  CC      drivers/scsi/constants.o
  CC      fs/fat/cache.o
  CC      drivers/scsi/scsicam.o
  CC      fs/ext2/balloc.o
  LD      drivers/video/omap2/displays/built-in.o
  CC      fs/isofs/namei.o
  CC [M]  net/sunrpc/svcsock.o
  LD      drivers/video/omap2/dss/built-in.o
  CC      net/xfrm/xfrm_sysctl.o
  LD      drivers/usb/host/built-in.o
  CC [M]  net/xfrm/xfrm_user.o
  CC      lib/plist.o
  LD      drivers/usb/built-in.o
  CC      lib/prio_heap.o
  LD      drivers/video/omap2/omapfb/built-in.o
  CC      drivers/pci/search.o
  CC      drivers/pnp/isapnp/core.o
  CC [M]  net/sunrpc/svcauth.o
  CC      drivers/scsi/scsi_error.o
  CC [M]  fs/autofs/root.o
  CC      drivers/ide/ide-atapi.o
  LD      fs/lockd/built-in.o
  CC      fs/isofs/inode.o
  LD      drivers/video/omap2/built-in.o
  CC [M]  net/sunrpc/svcauth_unix.o
  CC      drivers/pci/pci-sysfs.o
  CC      drivers/pnp/system.o
  CC      fs/ext2/dir.o
  CC [M]  fs/lockd/clntlock.o
  CC      fs/ext2/file.o
  CC      drivers/pci/rom.o
  LD      drivers/input/mouse/psmouse.o
  CC [M]  net/sunrpc/addr.o
  CC      fs/ext2/ialloc.o
  CC      fs/ext2/inode.o
  LD      drivers/input/mouse/built-in.o
  CC [M]  fs/lockd/clntproc.o
  LD      drivers/input/built-in.o
  CC [M]  fs/autofs/symlink.o
  CC      drivers/scsi/scsi_lib.o
  CC [M]  fs/autofs/waitq.o
  LD [M]  fs/exportfs/exportfs.o
  CC      drivers/pci/setup-res.o
  CC [M]  net/sunrpc/rpcb_clnt.o
  CC      drivers/serial/8250_pci.o
  CC [M]  fs/lockd/host.o
/home/caritas/projects/mce/kernel/linux-mce.git/fs/autofs/root.c:30: warning: 'autofs_root_compat_ioctl' declared 'static' but never defined
  CC      net/ipv4/devinet.o
  CONMK   drivers/char/consolemap_deftbl.c
  CC [M]  net/sunrpc/timer.o
  CC      lib/prio_tree.o
  CC      fs/fat/dir.o
  CC      drivers/scsi/scsi_lib_dma.o
  CC      drivers/serial/8250_early.o
  LD      net/unix/unix.o
  LD      net/unix/built-in.o
  CC      fs/fat/fatent.o
  CC [M]  net/sunrpc/xdr.o
  CC      drivers/net/tulip/timer.o
  CC      drivers/ide/setup-pci.o
  CC      drivers/char/vt.o
  CC      drivers/pci/irq.o
  CC      drivers/scsi/scsi_scan.o
  CC      drivers/pnp/isapnp/compat.o
  CC      drivers/net/tulip/tulip_core.o
  CC      drivers/net/tulip/21142.o
  CC      lib/proportions.o
  CC      drivers/scsi/scsi_sysfs.o
  CC      fs/isofs/dir.o
  CC [M]  fs/lockd/svc.o
  CC      drivers/net/tulip/pnic.o
  CC [M]  net/sunrpc/sunrpc_syms.o
  CC [M]  net/sunrpc/cache.o
  CC      fs/isofs/util.o
  CC      net/ipv4/af_inet.o
  CC      drivers/pnp/isapnp/proc.o
  CC      lib/radix-tree.o
  LD      net/xfrm/built-in.o
  CC [M]  fs/lockd/svclock.o
  CC      drivers/ide/ide-dma.o
  CC      drivers/pci/vpd.o
  CC      fs/fat/file.o
  CC      drivers/ide/ide-dma-sff.o
  CC [M]  net/sunrpc/rpc_pipe.o
  CC      drivers/ide/ide-proc.o
  CC      fs/isofs/rock.o
  CC      net/ipv4/igmp.o
  LD      net/core/built-in.o
  CC [M]  net/sunrpc/svc_xprt.o
  CC [M]  net/sunrpc/stats.o
  SHIPPED drivers/char/defkeymap.c
  CC      fs/ext2/ioctl.o
  CC      drivers/pci/proc.o
  LD      drivers/video/console/built-in.o
  CC [M]  net/sunrpc/sysctl.o
  LD      drivers/video/built-in.o
  CC      drivers/char/sysrq.o
  LD [M]  fs/autofs/autofs.o
  CC      drivers/ide/ide-gd.o
  CC      fs/ext2/namei.o
  CC      drivers/char/rtc.o
  CC      drivers/scsi/scsi_devinfo.o
  CC      fs/ext2/super.o
  LD      drivers/char/hw_random/built-in.o
  CC [M]  fs/lockd/svcshare.o
  CC      drivers/pci/slot.o
  CC      drivers/net/tulip/pnic2.o
  CC [M]  drivers/char/hw_random/core.o
  CC      fs/isofs/export.o
  CC      fs/ext2/symlink.o
  CC [M]  fs/lockd/svcproc.o
  CC      drivers/ide/ide-disk.o
  CC [M]  fs/lockd/svcsubs.o
  CC [M]  drivers/net/tulip/de2104x.o
  CC      lib/ratelimit.o
  CC      lib/rbtree.o
  CC [M]  fs/lockd/mon.o
  LD      drivers/pnp/isapnp/built-in.o
  CC      net/ipv4/fib_frontend.o
  CC      drivers/ide/ide-disk_ioctl.o
  LD      net/sunrpc/auth_gss/built-in.o
  CC      drivers/pci/quirks.o
  CC [M]  fs/lockd/xdr.o
  LD      drivers/pnp/built-in.o
  CC [M]  net/sunrpc/auth_gss/auth_gss.o
  CC [M]  fs/lockd/grace.o
  CC      net/ipv4/fib_semantics.o
  CC      drivers/scsi/scsi_sysctl.o
  LD      fs/nfs_common/built-in.o
  CC      fs/fat/inode.o
  CC [M]  net/sunrpc/auth_gss/gss_generic_token.o
  CC      drivers/pci/hotplug.o
  CC      drivers/ide/ide-disk_proc.o
  CC [M]  fs/lockd/xdr4.o
  CC      net/ipv4/inet_fragment.o
  LD      fs/nfs/built-in.o
  LD      drivers/serial/built-in.o
  CC      fs/fat/misc.o
  CC      drivers/pci/setup-bus.o
  CC [M]  fs/nfs/client.o
  CC [M]  fs/lockd/svc4proc.o
  CC      fs/fat/namei_msdos.o
  LD [M]  drivers/char/hw_random/rng-core.o
  CC [M]  net/sunrpc/auth_gss/gss_mech_switch.o
  CC      lib/reciprocal_div.o
  CC [M]  net/sunrpc/auth_gss/svcauth_gss.o
  CC      net/ipv4/sysctl_net_ipv4.o
  CC      drivers/ide/alim15x3.o
  CC      lib/rwsem.o
  CC      drivers/scsi/scsi_proc.o
  CC      drivers/char/consolemap_deftbl.o
  CC      net/ipv4/fib_hash.o
  CC      lib/sha1.o
  CC      drivers/char/defkeymap.o
  CC      net/ipv4/proc.o
  CC      drivers/scsi/scsi_trace.o
  CC      net/ipv4/xfrm4_mode_beet.o
  CC      fs/fat/namei_vfat.o
  CC      drivers/pci/setup-irq.o
  CC      drivers/ide/cmd64x.o
  CC      drivers/pci/syscall.o
  CC      drivers/scsi/sd.o
  CC [M]  net/sunrpc/auth_gss/gss_krb5_mech.o
  CC      lib/show_mem.o
  CC [M]  net/sunrpc/auth_gss/gss_krb5_seal.o
  CC      lib/string.o
  LD      fs/nfsd/built-in.o
  CC [M]  fs/nfs/dir.o
  CC      drivers/ide/cy82c693.o
  CC [M]  fs/nfsd/nfssvc.o
  CC [M]  net/sunrpc/auth_gss/gss_krb5_unseal.o
  CC [M]  fs/nfs/file.o
  CC [M]  fs/nfsd/nfsctl.o
  CC [M]  net/sunrpc/auth_gss/gss_krb5_seqnum.o
  CC      lib/vsprintf.o
  CC      drivers/ide/ide-pci-generic.o
  CC [M]  net/sunrpc/auth_gss/gss_krb5_wrap.o
  LD      fs/isofs/isofs.o
  CC      drivers/scsi/sr.o
  GEN     lib/crc32table.h
  LD      fs/isofs/built-in.o
  CC      drivers/scsi/sr_ioctl.o
  CC [M]  fs/nfsd/nfsproc.o
  CC      drivers/scsi/sr_vendor.o
  CC [M]  fs/nfs/getroot.o
  CC [M]  fs/nfsd/nfsfh.o
  CC [M]  net/sunrpc/auth_gss/gss_krb5_crypto.o
  LD      drivers/net/tulip/tulip.o
  CC      lib/crc32.o
  CC      drivers/ide/ide-scan-pci.o
  CC      drivers/ide/ide-generic.o
  CC [M]  net/sunrpc/auth_gss/gss_krb5_keys.o
  LD      drivers/net/tulip/built-in.o
  CC      net/ipv4/inet_lro.o
  CC [M]  fs/nfs/inode.o
  CC [M]  drivers/scsi/scsi_transport_spi.o
  CC      net/ipv4/xfrm4_mode_transport.o
  CC      fs/nls/nls_base.o
  CC [M]  drivers/scsi/scsi_wait_scan.o
  CC      fs/notify/fsnotify.o
  LD      drivers/pci/built-in.o
  CC      fs/partitions/check.o
  CC      fs/notify/notification.o
  CC      fs/notify/group.o
  CC      net/ipv4/xfrm4_mode_tunnel.o
  CC      fs/partitions/msdos.o
  CC      fs/notify/inode_mark.o
  CC      fs/nls/nls_cp437.o
  CC      net/ipv4/netfilter.o
  CC [M]  fs/nfs/super.o
  CC      fs/notify/mark.o
  LD      fs/quota/built-in.o
  LD      net/ipv4/netfilter/built-in.o
  CC      fs/ramfs/inode.o
  CC      net/ipv4/inet_diag.o
  LD      lib/built-in.o
  CC      fs/partitions/osf.o
  CC [M]  net/ipv4/netfilter/ip_tables.o
  CC [M]  fs/nfsd/vfs.o
  CC [M]  fs/nfs/nfs2xdr.o
  CC      fs/ramfs/file-mmu.o
  CC [M]  fs/nfs/direct.o
  CC      fs/notify/vfsmount_mark.o
  LD [M]  fs/lockd/lockd.o
  CC      net/ipv4/tcp_diag.o
  LD      fs/ext2/ext2.o
  CC      fs/proc/mmu.o
  CC      fs/proc/task_mmu.o
  CC      net/ipv4/tcp_cubic.o
  LD      fs/ext2/built-in.o
  CC      fs/sysfs/inode.o
  CC      fs/eventpoll.o
  CC      net/ipv4/xfrm4_policy.o
  LD [M]  net/sunrpc/sunrpc.o
  CC      net/ipv4/xfrm4_state.o
  CC      fs/notify/dnotify/dnotify.o
  LD      drivers/scsi/aic7xxx/built-in.o
  CC      fs/anon_inodes.o
  SHIPPED drivers/scsi/aic7xxx/aic7xxx_seq.h
  LD      fs/reiserfs/built-in.o
  CC      fs/sysfs/file.o
  CC [M]  fs/reiserfs/bitmap.o
  LD      drivers/net/built-in.o
  SHIPPED drivers/scsi/aic7xxx/aic7xxx_reg.h
  CC [M]  fs/nfs/pagelist.o
  SHIPPED drivers/scsi/aic7xxx/aic7xxx_reg_print.c
  CC      fs/signalfd.o
  LD      fs/notify/fanotify/built-in.o
  CC [M]  net/ipv4/netfilter/iptable_filter.o
  CC [M]  fs/nfs/proc.o
  CC      fs/notify/inotify/inotify_fsnotify.o
  CC      net/ipv4/xfrm4_input.o
  CC [M]  drivers/scsi/aic7xxx/aic7xxx_osm.o
  LD      fs/nls/built-in.o
  CC [M]  net/ipv4/netfilter/ip_queue.o
  CC      fs/timerfd.o
  CC [M]  fs/reiserfs/do_balan.o
  CC [M]  fs/nfs/read.o
  CC      fs/eventfd.o
  CC      net/ipv4/xfrm4_output.o
  CC      fs/aio.o
  CC [M]  fs/nfsd/export.o
  CC [M]  net/ipv4/ah4.o
  CC [M]  drivers/scsi/aic7xxx/aic7xxx_proc.o
  CC [M]  fs/nfsd/auth.o
  CC [M]  drivers/scsi/aic7xxx/aic7770_osm.o
  LD      fs/ramfs/ramfs.o
  LD      drivers/ide/ide-core.o
  CC      fs/locks.o
  LD      fs/ramfs/built-in.o
  CC      fs/nfsctl.o
  CC      fs/proc/inode.o
  CC [M]  fs/reiserfs/namei.o
  LD      drivers/ide/ide-gd_mod.o
  CC [M]  fs/reiserfs/inode.o
  LD      drivers/ide/ide-cd_mod.o
  CC [M]  drivers/scsi/aic7xxx/aic7xxx_osm_pci.o
  CC      fs/binfmt_script.o
  CC      fs/proc/root.o
  LD      drivers/ide/built-in.o
  CC [M]  fs/reiserfs/file.o
  CC      fs/proc/base.o
  CC      fs/binfmt_elf.o
  CC      fs/notify/inotify/inotify_user.o
  CC [M]  fs/nfsd/lockd.o
  CC [M]  net/ipv4/esp4.o
  CC [M]  fs/nfsd/nfscache.o
  CC      fs/proc/generic.o
  CC [M]  drivers/scsi/aic7xxx/aic7xxx_core.o
  CC [M]  fs/nfsd/nfsxdr.o
  LD      fs/fat/fat.o
  CC      fs/sysfs/dir.o
  CC      fs/proc/array.o
  CC [M]  fs/nfs/symlink.o
  LD      drivers/char/built-in.o
  LD      fs/fat/vfat.o
  LD      fs/fat/msdos.o
  CC      fs/proc/proc_tty.o
  LD      fs/fat/built-in.o
  CC      fs/proc/cmdline.o
  CC [M]  fs/nfsd/stats.o
  LD      fs/notify/dnotify/built-in.o
  LD      fs/partitions/built-in.o
  CC [M]  drivers/scsi/aic7xxx/aic7xxx_93cx6.o
  CC [M]  fs/reiserfs/dir.o
  CC [M]  fs/nfs/unlink.o
  CC      fs/sysfs/symlink.o
  CC [M]  drivers/scsi/aic7xxx/aic7770.o
  CC      fs/sysfs/mount.o
  LD [M]  net/sunrpc/auth_gss/auth_rpcgss.o
  CC [M]  drivers/scsi/aic7xxx/aic7xxx_pci.o
  CC [M]  fs/nfsd/nfs3proc.o
  LD [M]  net/sunrpc/auth_gss/rpcsec_gss_krb5.o
  CC [M]  fs/nfs/write.o
  CC [M]  drivers/scsi/aic7xxx/aic7xxx_reg_print.o
  CC [M]  fs/nfs/namespace.o
  CC [M]  fs/nfsd/nfs3xdr.o
  CC      fs/proc/cpuinfo.o
  CC      fs/sysfs/bin.o
  CC      fs/sysfs/group.o
  CC [M]  fs/reiserfs/fix_node.o
  CC [M]  fs/nfs/mount_clnt.o
  CC [M]  fs/nfs/dns_resolve.o
  CC      fs/proc/devices.o
  CC [M]  fs/nfs/cache_lib.o
  CC [M]  fs/nfs/nfs3proc.o
  CC      fs/proc/interrupts.o
  CC [M]  fs/nfs/nfs3xdr.o
  LD      drivers/scsi/scsi_mod.o
  CC      fs/proc/loadavg.o
  CC [M]  fs/reiserfs/super.o
  CC      fs/proc/meminfo.o
  LD      drivers/scsi/sd_mod.o
  LD      drivers/scsi/sr_mod.o
  CC [M]  fs/nfs/sysctl.o
  CC      fs/proc/stat.o
  LD      drivers/scsi/built-in.o
  CC      fs/proc/uptime.o
  CC [M]  fs/reiserfs/prints.o
  CC      fs/proc/version.o
  CC [M]  fs/reiserfs/objectid.o
  CC      fs/proc/softirqs.o
  CC [M]  fs/reiserfs/lbalance.o
  LD      net/ipv4/built-in.o
  CC [M]  fs/reiserfs/ibalance.o
  CC      fs/proc/proc_sysctl.o
  CC [M]  fs/reiserfs/stree.o
  CC      fs/proc/proc_net.o
  CC [M]  fs/reiserfs/hashes.o
  CC      fs/proc/kcore.o
  CC [M]  fs/reiserfs/tail_conversion.o
  CC [M]  fs/reiserfs/journal.o
  CC      fs/proc/kmsg.o
  CC      fs/proc/page.o
  CC [M]  fs/reiserfs/resize.o
  CC [M]  fs/reiserfs/item_ops.o
  CC [M]  fs/reiserfs/ioctl.o
  CC [M]  fs/reiserfs/xattr.o
  CC [M]  fs/reiserfs/lock.o
  LD      net/built-in.o
  LD      fs/notify/inotify/built-in.o
  LD      fs/notify/built-in.o
  LD      fs/sysfs/built-in.o
  AR      lib/lib.a
  LD      fs/proc/proc.o
  LD      fs/proc/built-in.o
  LD [M]  fs/nfsd/nfsd.o
  LD [M]  fs/nfs/nfs.o
  LD [M]  fs/reiserfs/reiserfs.o
  LD      fs/built-in.o
  LD [M]  drivers/scsi/aic7xxx/aic7xxx.o
  LD      drivers/built-in.o
make[1]: *** [sub-make] Error 2
make: *** [all] Error 2

[-- Attachment #3: log_s390 --]
[-- Type: text/plain, Size: 69682 bytes --]

make -C /home/caritas/projects/mce/kernel/linux-mce.git O=/home/caritas/projects/mce/kernel/build-cross/obj-s390/. 
  HOSTCC  scripts/basic/fixdep
  GEN     /home/caritas/projects/mce/kernel/build-cross/obj-s390/Makefile
  HOSTCC  scripts/basic/docproc
  HOSTCC  scripts/basic/hash
  HOSTCC  scripts/kconfig/conf.o
  HOSTCC  scripts/kconfig/kxgettext.o
  HOSTCC  scripts/kconfig/zconf.tab.o
  HOSTLD  scripts/kconfig/conf
scripts/kconfig/conf --silentoldconfig arch/s390/Kconfig
  GEN     /home/caritas/projects/mce/kernel/build-cross/obj-s390/Makefile
  CHK     include/linux/version.h
  UPD     include/linux/version.h
  Using /home/caritas/projects/mce/kernel/linux-mce.git as source for kernel
  CHK     include/generated/utsrelease.h
  UPD     include/generated/utsrelease.h
  HOSTCC  scripts/kallsyms
  HOSTCC  scripts/bin2c
  CC      scripts/mod/empty.o
  HOSTCC  scripts/mod/mk_elfconfig
  CC      kernel/bounds.s
  HOSTCC  scripts/genksyms/genksyms.o
  SHIPPED scripts/genksyms/lex.c
  SHIPPED scripts/genksyms/parse.h
  SHIPPED scripts/genksyms/keywords.c
  SHIPPED scripts/genksyms/parse.c
  HOSTCC  scripts/genksyms/lex.o
  HOSTCC  scripts/genksyms/parse.o
  MKELF   scripts/mod/elfconfig.h
  HOSTCC  scripts/mod/file2alias.o
  HOSTCC  scripts/mod/modpost.o
  HOSTCC  scripts/mod/sumversion.o
  GEN     include/generated/bounds.h
  CC      arch/s390/kernel/asm-offsets.s
  GEN     include/generated/asm-offsets.h
  CALL    /home/caritas/projects/mce/kernel/linux-mce.git/scripts/checksyscalls.sh
  HOSTLD  scripts/genksyms/genksyms
  HOSTLD  scripts/mod/modpost
  HOSTCC  usr/gen_init_cpio
  CHK     include/generated/compile.h
  CC      init/main.o
  CC      init/do_mounts.o
  CC      init/do_mounts_rd.o
  CC      arch/s390/mm/init.o
  CC      init/do_mounts_initrd.o
  CC      init/do_mounts_md.o
  CC      arch/s390/mm/fault.o
  CC      init/initramfs.o
  CC      arch/s390/mm/extmem.o
  CC      arch/s390/mm/mmap.o
  LD      arch/s390/crypto/built-in.o
  CC      arch/s390/mm/vmem.o
  CC [M]  arch/s390/crypto/sha512_s390.o
  CC      arch/s390/mm/pgtable.o
  CC [M]  arch/s390/crypto/sha_common.o
  CC [M]  arch/s390/crypto/prng.o
  CC      arch/s390/mm/maccess.o
  CC      arch/s390/mm/page-states.o
  CC      arch/s390/kernel/bitmap.o
  CC      arch/s390/kernel/traps.o
  LD      arch/s390/appldata/built-in.o
  CC      arch/s390/kernel/time.o
  CC      arch/s390/kernel/process.o
  AS      arch/s390/kernel/base.o
  CC      arch/s390/hypfs/inode.o
  CC      arch/s390/kernel/early.o
  CC      arch/s390/hypfs/hypfs_diag.o
  CC      arch/s390/kernel/setup.o
  CC      arch/s390/hypfs/hypfs_vm.o
  CC      arch/s390/kernel/processor.o
  CC      arch/s390/kernel/sys_s390.o
  UPD     include/generated/compile.h
  CC      arch/s390/kernel/ptrace.o
  CC      arch/s390/kernel/signal.o
  CC      init/version.o
  CC      arch/s390/kernel/cpcmd.o
  LD      arch/s390/kvm/built-in.o
  CC      arch/s390/kernel/ebcdic.o
  CC [M]  arch/s390/kvm/../../../virt/kvm/kvm_main.o
  CC      arch/s390/kernel/s390_ext.o
  CC [M]  arch/s390/kvm/kvm-s390.o
  CC      mm/bootmem.o
  CC      arch/s390/kernel/debug.o
  AS [M]  arch/s390/kvm/sie64a.o
  CC      mm/filemap.o
  CC      kernel/sched.o
  CC      arch/s390/kernel/irq.o
  CC      mm/mempool.o
  CC      arch/s390/kernel/ipl.o
  CC      kernel/fork.o
  CC [M]  arch/s390/kvm/intercept.o
  CC      kernel/exec_domain.o
  CC      mm/oom_kill.o
  CC      arch/s390/kernel/dis.o
  CC [M]  arch/s390/kvm/interrupt.o
  CC      kernel/panic.o
  CC      mm/fadvise.o
  CC      arch/s390/kernel/diag.o
  CC      kernel/printk.o
  CC [M]  arch/s390/kvm/priv.o
  CC      mm/maccess.o
  CC      arch/s390/kernel/mem_detect.o
  CC      mm/page_alloc.o
  CC      kernel/cpu.o
  CC [M]  arch/s390/kvm/sigp.o
  CC      arch/s390/kernel/vdso.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/ftrace_event.h:7,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/trace/syscall.h:6,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/syscalls.h:76,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/init/initramfs.c:9:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC      ipc/compat.o
  CC      mm/page-writeback.o
  GEN     usr/initramfs_data.cpio
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/mm/pgtable.c:14:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/init/do_mounts.h:2,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/init/do_mounts_initrd.c:11:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/irq.h:5,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/irqnr.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/random.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/crypto/prng.c:12:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/ftrace_event.h:7,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/trace/syscall.h:6,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/syscalls.h:76,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/init/main.c:16:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC      mm/readahead.o
make[3]: *** [arch/s390/mm/pgtable.o] Error 1
make[3]: *** Waiting for unfinished jobs....
  CC      fs/open.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/nfs_fs.h:41,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/init/do_mounts.c:20:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC      fs/read_write.o
make[3]: *** [init/initramfs.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: *** [arch/s390/crypto/prng.o] Error 1
make[3]: *** Waiting for unfinished jobs....
  CC      kernel/exit.o
  CC      ipc/util.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/init/do_mounts.h:2,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/init/do_mounts_rd.c:12:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
make[3]: *** [init/do_mounts_initrd.o] Error 1
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/ftrace_event.h:7,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/trace/syscall.h:6,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/syscalls.h:76,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/kernel/sys_s390.c:25:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC      ipc/msgutil.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/kvm_host.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/kvm/intercept.c:14:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC      kernel/itimer.o
  AS      usr/initramfs_data.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/kvm_host.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/kvm/kvm-s390.c:22:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/kvm_host.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/kvm/sigp.c:16:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
make[3]: *** [arch/s390/kernel/sys_s390.o] Error 1
make[3]: *** Waiting for unfinished jobs....
  TIMEC   kernel/timeconst.h
  CC      kernel/softirq.o
make[3]: *** [init/main.o] Error 1
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/irq.h:5,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/nmi.h:8,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/kernel/sched.c:31:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/mm/init.c:24:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/ftrace_event.h:7,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/trace/syscall.h:6,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/syscalls.h:76,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/kernel/signal.c:28:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment

/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/ftrace_event.h:7,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/trace/syscall.h:6,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/syscalls.h:76,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/kernel/exec_domain.c:18:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
make[3]: *** [init/do_mounts_rd.o] Error 1
  LD      usr/built-in.o
make[3]: *** [arch/s390/mm/init.o] Error 1
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/mempolicy.h:70,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/kernel/fork.c:21:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/init/do_mounts.h:2,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/init/do_mounts_md.c:5:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/fadvise.c:14:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/hypfs/inode.c:18:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC      ipc/msg.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/irq.h:5,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/nmi.h:8,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/kernel/printk.c:26:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC      ipc/sem.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/kvm_host.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/kvm/../../../virt/kvm/kvm_main.c:21:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC      mm/swap.o
  CC      fs/file_table.o
make[3]: *** [kernel/exec_domain.o] Error 1
make[3]: *** Waiting for unfinished jobs....
  CC      fs/super.o
  CC      ipc/shm.o
  CC [M]  arch/s390/kvm/diag.o
  CC      mm/truncate.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/mempool.c:15:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/mempolicy.h:70,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/oom_kill.c:32:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/mm/fault.c:29:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/ftrace_event.h:7,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/trace/syscall.h:6,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/syscalls.h:76,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/ipc/compat.c:29:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
make[3]: *** [mm/fadvise.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: *** [arch/s390/kernel/signal.o] Error 1
  CC      security/commoncap.o
make[3]: *** [arch/s390/kvm/intercept.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: *** [arch/s390/kvm/sigp.o] Error 1
make[3]: *** [arch/s390/kvm/kvm-s390.o] Error 1
  CC      ipc/ipcns_notifier.o
  CC      fs/char_dev.o
  CC      security/min_addr.o
make[3]: *** [init/do_mounts_md.o] Error 1
make[3]: *** [arch/s390/mm/fault.o] Error 1
make[3]: *** [mm/oom_kill.o] Error 1
  CC      fs/stat.o
  CC      security/lsm_audit.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/ftrace_event.h:7,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/trace/syscall.h:6,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/kernel/ptrace.c:39:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
make[3]: *** [mm/mempool.o] Error 1
  CC      ipc/syscall.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/page-writeback.c:21:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
make[3]: *** [arch/s390/hypfs/inode.o] Error 1
  CC      fs/exec.o
make[2]: *** [arch/s390/hypfs] Error 2
make[2]: *** Waiting for unfinished jobs....
  CC      ipc/ipc_sysctl.o
make[3]: *** [init/do_mounts.o] Error 1
  CC      ipc/mqueue.o
make[3]: *** [ipc/compat.o] Error 1
make[3]: *** Waiting for unfinished jobs....
  CC      fs/pipe.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/ftrace_event.h:7,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/trace/syscall.h:6,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/syscalls.h:76,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/read_write.c:16:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC      fs/namei.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/readahead.c:15:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC      fs/fcntl.o
make[3]: *** [kernel/printk.o] Error 1
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/kvm_host.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/kvm/gaccess.h:17,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/kvm/priv.c:21:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC      fs/ioctl.o
  CC      fs/readdir.o
  CC      fs/select.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/kvm_host.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/kvm/diag.c:15:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/ftrace_event.h:7,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/trace/syscall.h:6,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/syscalls.h:76,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/ipc/msg.c:34:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/ftrace_event.h:7,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/trace/syscall.h:6,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/syscalls.h:76,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/ipc/sem.c:82:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/super.c:26:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
make[3]: *** [mm/readahead.o] Error 1
  CC      crypto/api.o
make[3]: *** [mm/page-writeback.o] Error 1
  CC      fs/fifo.o
make[3]: *** [fs/read_write.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: *** [arch/s390/kvm/priv.o] Error 1
make[3]: *** [arch/s390/kvm/diag.o] Error 1
make[3]: *** [kernel/fork.o] Error 1
make[3]: *** [ipc/msg.o] Error 1
  CC      crypto/cipher.o
make[3]: *** [arch/s390/kernel/ptrace.o] Error 1
make[2]: *** [init] Error 2
make[3]: *** [ipc/sem.o] Error 1
  CC      crypto/compress.o
  CC      crypto/algapi.o
  CC      crypto/scatterwalk.o
  CC      crypto/proc.o
  CC      crypto/ablkcipher.o
  CC      crypto/blkcipher.o
  CC      crypto/ahash.o
  CC      crypto/shash.o
  CC      crypto/algboss.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/ftrace_event.h:7,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/trace/syscall.h:6,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/syscalls.h:76,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/stat.c:15:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC      crypto/testmgr.o
  CC      crypto/crypto_wq.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/open.c:25:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
make[3]: *** [kernel/sched.o] Error 1
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/irq.h:5,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/irqnr.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/random.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/net.h:58,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/skbuff.h:26,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/if_ether.h:125,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/netdevice.h:29,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/net/sock.h:50,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/security/lsm_audit.c:20:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
make[3]: *** [fs/super.o] Error 1
make[3]: *** [fs/stat.o] Error 1
  CC      crypto/fips.o
  CC      crypto/aead.o
  CC      crypto/chainiv.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/security/commoncap.c:19:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
/home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/kvm/../../../virt/kvm/kvm_main.c: In function 'kvm_dev_ioctl_create_vm':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/kvm/../../../virt/kvm/kvm_main.c:1781: warning: unused variable 'r'
make[2]: *** [arch/s390/crypto] Error 2
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/mempolicy.h:70,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/shmem_fs.h:5,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/ipc/shm.c:31:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/exec.c:34:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
make[3]: *** [arch/s390/kvm/../../../virt/kvm/kvm_main.o] Error 1
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/truncate.c:16:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC      crypto/eseqiv.o
  CC      crypto/pcompress.o
  CC      crypto/md5.o
make[3]: *** [mm/truncate.o] Error 1
  CC      crypto/cbc.o
make[3]: *** [fs/open.o] Error 1
  CC      crypto/des_generic.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/ftrace_event.h:7,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/trace/syscall.h:6,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/syscalls.h:76,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/readdir.c:18:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
make[3]: *** [security/commoncap.o] Error 1
make[3]: *** Waiting for unfinished jobs....
  CC      crypto/rng.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/ftrace_event.h:7,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/trace/syscall.h:6,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/syscalls.h:76,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/select.c:19:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC      crypto/krng.o
  CC [M]  crypto/seqiv.o
make[3]: *** [ipc/shm.o] Error 1
make[3]: *** [fs/exec.o] Error 1
  CC [M]  crypto/hmac.o
make[3]: *** [fs/readdir.o] Error 1
  CC [M]  crypto/vmac.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/ftrace_event.h:7,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/trace/syscall.h:6,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/syscalls.h:76,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/fcntl.c:7:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC [M]  crypto/rmd128.o
  CC [M]  crypto/rmd160.o
  CC [M]  crypto/rmd256.o
make[3]: *** [security/lsm_audit.o] Error 1
make[2]: *** [security] Error 2
  CC [M]  crypto/rmd320.o
  CC [M]  crypto/sha1_generic.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/ipc/mqueue.c:18:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
make[3]: *** [fs/select.o] Error 1
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/namei.c:22:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC [M]  crypto/gf128mul.o
  CC [M]  crypto/ecb.o
  CC [M]  crypto/pcbc.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/ftrace_event.h:7,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/trace/syscall.h:6,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/syscalls.h:76,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/ioctl.c:7:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC [M]  crypto/cts.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:15,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/pipe.c:19:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
make[3]: *** [fs/fcntl.o] Error 1
  CC [M]  crypto/ctr.o
  CC [M]  crypto/gcm.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/irq.h:5,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/irqnr.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/random.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/net.h:58,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/skbuff.h:26,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/netlink.h:152,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/rtnetlink.h:5,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/algapi.c:19:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/irq.h:5,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/irqnr.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/random.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/net.h:58,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/skbuff.h:26,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/netlink.h:152,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/rtnetlink.h:5,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/aead.c:20:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/crypto/scatterwalk.h:21,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/shash.c:13:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC [M]  crypto/ccm.o
make[2]: *** [arch/s390/mm] Error 2
  CC [M]  crypto/fcrypt.o
  CC [M]  crypto/aes_generic.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/irq.h:5,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/irqnr.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/random.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/net.h:58,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/skbuff.h:26,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/netlink.h:152,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/rtnetlink.h:5,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/ablkcipher.c:22:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC [M]  crypto/camellia.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/crypto/scatterwalk.h:21,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/scatterwalk.c:17:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC [M]  crypto/seed.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/crypto/scatterwalk.h:21,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/ahash.c:17:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
make[3]: *** [fs/pipe.o] Error 1
  CC [M]  crypto/salsa20_generic.o
  CC [M]  crypto/zlib.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/irq.h:5,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/irqnr.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/random.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/rng.c:20:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC [M]  crypto/crc32c.o
make[3]: *** [fs/namei.o] Error 1
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/irq.h:5,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/irqnr.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/random.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/net.h:58,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/skbuff.h:26,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/netlink.h:152,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/rtnetlink.h:5,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/algboss.c:20:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
  CC [M]  crypto/authenc.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/irq.h:5,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/irqnr.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/random.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/krng.c:17:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':make[3]: *** [crypto/shash.o] Error 1
make[3]: *** Waiting for unfinished jobs....
  CC [M]  crypto/lzo.o
make[3]: *** [crypto/rng.o] Error 1

/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
make[3]: *** [crypto/scatterwalk.o] Error 1
make[3]: *** [crypto/aead.o] Error 1
make[3]: *** [crypto/ahash.o] Error 1
make[3]: *** [crypto/krng.o] Error 1
make[3]: *** [crypto/algapi.o] Error 1
make[3]: *** [crypto/ablkcipher.o] Error 1
make[3]: *** [crypto/algboss.o] Error 1
make[3]: *** [fs/ioctl.o] Error 1
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/irq.h:5,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/irqnr.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/random.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/ctr.c:19:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/crypto/scatterwalk.h:21,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/cts.c:50:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
make[3]: *** [crypto/ctr.o] Error 1
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/crypto/scatterwalk.h:21,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/hmac.c:20:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
make[3]: *** [crypto/cts.o] Error 1
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/crypto/scatterwalk.h:21,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/eseqiv.c:20:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/crypto/scatterwalk.h:21,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/blkcipher.c:18:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/crypto/scatterwalk.h:21,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/vmac.c:32:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
make[3]: *** [crypto/hmac.o] Error 1
make[3]: *** [ipc/mqueue.o] Error 1
make[2]: *** [ipc] Error 2
make[3]: *** [crypto/eseqiv.o] Error 1
make[3]: *** [crypto/blkcipher.o] Error 1
make[3]: *** [crypto/vmac.o] Error 1
make[2]: *** [fs] Error 2
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/crypto/scatterwalk.h:21,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/gcm.c:15:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/crypto/scatterwalk.h:21,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/authenc.c:17:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/arch/s390/include/asm/hardirq.h:18,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/hardirq.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/crypto/scatterwalk.h:21,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/ccm.c:15:
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h: In function '__raise_softirq_irqoff':
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: implicit declaration of function 'local_softirq_pending'
/home/caritas/projects/mce/kernel/linux-mce.git/include/linux/interrupt.h:414: error: lvalue required as left operand of assignment
make[3]: *** [crypto/gcm.o] Error 1
make[3]: *** [crypto/ccm.o] Error 1
make[3]: *** [crypto/authenc.o] Error 1
make[2]: *** [kernel] Error 2
make[2]: *** [arch/s390/kvm] Error 2
make[2]: *** [arch/s390/kernel] Error 2
make[2]: *** [crypto] Error 2
make[2]: *** [mm] Error 2
make[1]: *** [sub-make] Error 2
make: *** [all] Error 2

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH -tip -v4] irq_work: generic hard-irq context callbacks
  2010-09-15  5:29     ` Huang Ying
@ 2010-09-15  7:51       ` Martin Schwidefsky
  2010-09-15  8:28       ` Peter Zijlstra
  1 sibling, 0 replies; 18+ messages in thread
From: Martin Schwidefsky @ 2010-09-15  7:51 UTC (permalink / raw)
  To: Huang Ying
  Cc: Peter Zijlstra, Ingo Molnar, H. Peter Anvin, paulus,
	linux-kernel, Andi Kleen, dhowells, Russell King, Kyle McMartin,
	davem, Linux-Arch

On Wed, 15 Sep 2010 13:29:50 +0800
Huang Ying <ying.huang@intel.com> wrote:

> On Mon, 2010-09-13 at 19:36 +0800, Peter Zijlstra wrote:
> > On Mon, 2010-09-13 at 12:32 +0200, Martin Schwidefsky wrote:
> > > On Mon, 13 Sep 2010 14:50:48 +0800
> > > Huang Ying <ying.huang@intel.com> wrote:
> > > 
> > > > From:  Peter Zijlstra <a.p.zijlstra@chello.nl>
> > > > 
> > > > In order for other NMI context users that want to run things from
> > > > hard-IRQ context, extract the perf_event callback mechanism.
> > > > 
> > > > Huang Ying: some fixes
> > > > 
> > > > This patch is only tested on x86 platform.
> > > > 
> > > > 
> > > > v4:
> > > > 
> > > > -rebased on latest -tip tree
> > > > 
> > > > Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
> > > > Signed-off-by: Huang Ying <ying.huang@intel.com>
> > > 
> > > On s390 I get compile errors:
> > > 
> > > include/linux/perf_event.h:464:29: error: asm/perf_event.h: No such file or directory
> > > 
> > > Not a good idea to completely remove the perf_event.h from arch/s390/include/asm.
> > > With an empty header file the kernel at least compiles.
> > 
> > Urgh, Huang, could you at least compile test the other arches?
> 
> I uses the cross build tool from:
> 
> http://www.kernel.org/pub/tools/crosstool/
> 
> But I get compile errors on s390 and alpha even for tip/master
> (ce0c65112d37ff04016b4e0962a406281640739b). The build logs are attached.
> 
> Do I use the wrong git tree? Or we should fix tip/master firstly?
> 
> And frv and sh have compile error even for linus/master and 2.6.35. So I
> can not compile test for these arches.
> 
> Do I use the wrong cross tool?
> 
> The kernel configuration is generated as follow:
> 
> make defconfig
> ./scripts/config --enable perf_events

The compile error on s390 is a known problem in the -tip/-next tree introduced
with git commit 2bf2160d8805de64308e2e7c3cd97813cb58ed2f. The proposed solution
from Heiko as discussed on linux-next is this patch:

---
 arch/s390/include/asm/hardirq.h |    4 ----
 1 file changed, 4 deletions(-)

--- a/arch/s390/include/asm/hardirq.h
+++ b/arch/s390/include/asm/hardirq.h
@@ -12,10 +12,6 @@
 #ifndef __ASM_HARDIRQ_H
 #define __ASM_HARDIRQ_H
 
-#include <linux/threads.h>
-#include <linux/sched.h>
-#include <linux/cache.h>
-#include <linux/interrupt.h>
 #include <asm/lowcore.h>
 
 #define local_softirq_pending() (S390_lowcore.softirq_pending)


-- 
blue skies,
   Martin.

"Reality continues to ruin my life." - Calvin.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH -tip -v4] irq_work: generic hard-irq context callbacks
  2010-09-15  5:29     ` Huang Ying
  2010-09-15  7:51       ` Martin Schwidefsky
@ 2010-09-15  8:28       ` Peter Zijlstra
  2010-09-15  8:50         ` Matt Fleming
                           ` (3 more replies)
  1 sibling, 4 replies; 18+ messages in thread
From: Peter Zijlstra @ 2010-09-15  8:28 UTC (permalink / raw)
  To: Huang Ying
  Cc: Martin Schwidefsky, Ingo Molnar, H. Peter Anvin, paulus,
	linux-kernel, Andi Kleen, dhowells, Russell King, Kyle McMartin,
	davem, Linux-Arch, Matt Fleming, DavidHowells

On Wed, 2010-09-15 at 13:29 +0800, Huang Ying wrote:

> I uses the cross build tool from:
> 
> http://www.kernel.org/pub/tools/crosstool/

I'm not familiar with those, I build my own gcc-4.5.1 toolchains for all
targets that would actually build a gcc toolchains, for those that don't
I simply don't care about.

> But I get compile errors on s390 and alpha even for tip/master
> (ce0c65112d37ff04016b4e0962a406281640739b). The build logs are attached.

I've got a patch to solve the Alpha issue, and I've got a patch for one
of the SH issues as well, but I understand you need to pull in Paul
Mundt's SH tree to make it fully build.

I've asked Ingo to merge the Alpha and SH patches I had pending.

> Do I use the wrong git tree? Or we should fix tip/master firstly?
> 
> And frv and sh have compile error even for linus/master and 2.6.35. So I
> can not compile test for these arches.

FRV is one of those architectures that doesn't build a toolchain from
plain gcc sources, David Howells did provide me with a toolchain for
that, it does build, but really it should be getting its toolchain
sorted upstream.



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH -tip -v4] irq_work: generic hard-irq context callbacks
  2010-09-15  8:28       ` Peter Zijlstra
@ 2010-09-15  8:50         ` Matt Fleming
  2010-09-16  6:59           ` Huang Ying
  2010-09-16  8:57         ` Huang Ying
                           ` (2 subsequent siblings)
  3 siblings, 1 reply; 18+ messages in thread
From: Matt Fleming @ 2010-09-15  8:50 UTC (permalink / raw)
  To: Peter Zijlstra
  Cc: Huang Ying, Martin Schwidefsky, Ingo Molnar, H. Peter Anvin,
	paulus, linux-kernel, Andi Kleen, dhowells, Russell King,
	Kyle McMartin, davem, Linux-Arch, Paul Mundt

On Wed, Sep 15, 2010 at 10:28:40AM +0200, Peter Zijlstra wrote:
> 
> I've got a patch to solve the Alpha issue, and I've got a patch for one
> of the SH issues as well, but I understand you need to pull in Paul
> Mundt's SH tree to make it fully build.

FWIW this is the commit that is missing in Linus' tree which fixes the
build issues,

http://git.kernel.org/?p=linux/kernel/git/lethal/sh-2.6.git;a=commit;h=b9afa3e015273a52718e0a7efe198a0df76be880

I'm guessing Paul will be sending a pull request to fix this breakage
before 2.6.36 is released.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH -tip -v4] irq_work: generic hard-irq context callbacks
  2010-09-15  8:50         ` Matt Fleming
@ 2010-09-16  6:59           ` Huang Ying
  2010-09-16  7:03             ` Paul Mundt
  0 siblings, 1 reply; 18+ messages in thread
From: Huang Ying @ 2010-09-16  6:59 UTC (permalink / raw)
  To: Matt Fleming
  Cc: Peter Zijlstra, Martin Schwidefsky, Ingo Molnar, H. Peter Anvin,
	paulus, linux-kernel, Andi Kleen, dhowells, Russell King,
	Kyle McMartin, davem, Linux-Arch, Paul Mundt

[-- Attachment #1: Type: text/plain, Size: 758 bytes --]

On Wed, 2010-09-15 at 16:50 +0800, Matt Fleming wrote:
> On Wed, Sep 15, 2010 at 10:28:40AM +0200, Peter Zijlstra wrote:
> > 
> > I've got a patch to solve the Alpha issue, and I've got a patch for one
> > of the SH issues as well, but I understand you need to pull in Paul
> > Mundt's SH tree to make it fully build.
> 
> FWIW this is the commit that is missing in Linus' tree which fixes the
> build issues,
> 
> http://git.kernel.org/?p=linux/kernel/git/lethal/sh-2.6.git;a=commit;h=b9afa3e015273a52718e0a7efe198a0df76be880
> 
> I'm guessing Paul will be sending a pull request to fix this breakage
> before 2.6.36 is released.

I have compile error even after merging full sh-2.6.git. Log is
attached. I need a newer compiler?

Best Regards,
Huang Ying


[-- Attachment #2: log_sh4 --]
[-- Type: text/plain, Size: 29962 bytes --]

make -C /home/caritas/projects/mce/kernel/linux-mce.git O=/home/caritas/projects/mce/kernel/build-cross/obj-sh4/. 
  GEN     /home/caritas/projects/mce/kernel/build-cross/obj-sh4/Makefile
  HOSTCC  scripts/basic/fixdep
  HOSTCC  scripts/basic/docproc
  HOSTCC  scripts/basic/hash
  HOSTCC  scripts/kconfig/conf.o
  HOSTCC  scripts/kconfig/kxgettext.o
  HOSTCC  scripts/kconfig/zconf.tab.o
  HOSTLD  scripts/kconfig/conf
scripts/kconfig/conf --silentoldconfig arch/sh/Kconfig
  GEN     /home/caritas/projects/mce/kernel/build-cross/obj-sh4/Makefile
  CHK     include/linux/version.h
  UPD     include/linux/version.h
  Using /home/caritas/projects/mce/kernel/linux-mce.git as source for kernel
  CHK     include/generated/utsrelease.h
  UPD     include/generated/utsrelease.h
  HOSTCC  scripts/kallsyms
  HOSTCC  scripts/pnmtologo
  HOSTCC  scripts/conmakehash
  CC      scripts/mod/empty.o
  HOSTCC  scripts/mod/mk_elfconfig
  Generating include/generated/machtypes.h
  CC      kernel/bounds.s
  GEN     include/generated/bounds.h
  MKELF   scripts/mod/elfconfig.h
  HOSTCC  scripts/mod/file2alias.o
  HOSTCC  scripts/mod/modpost.o
  HOSTCC  scripts/mod/sumversion.o
  CC      arch/sh/kernel/asm-offsets.s
  GEN     include/generated/asm-offsets.h
  CALL    /home/caritas/projects/mce/kernel/linux-mce.git/scripts/checksyscalls.sh
  HOSTLD  scripts/mod/modpost
  LD      usr/built-in.o
  CHK     include/generated/compile.h
  CC      init/main.o
  CC      init/do_mounts.o
  CC      init/do_mounts_rd.o
  CC      arch/sh/kernel/clkdev.o
  CC      init/noinitramfs.o
  AS      arch/sh/kernel/debugtraps.o
  CC      arch/sh/kernel/dma-nommu.o
  CC      arch/sh/mm/alignment.o
  CC      arch/sh/mm/cache.o
  CC      arch/sh/kernel/dumpstack.o
  CC      arch/sh/mm/init.o
  CC      arch/sh/mm/consistent.o
  CC      arch/sh/kernel/idle.o
  LD      arch/sh/boards/built-in.o
  CC      arch/sh/kernel/io.o
  CC      arch/sh/mm/mmap.o
  CC      arch/sh/kernel/irq.o
  CC      arch/sh/mm/cache-sh2.o
  CC      arch/sh/mm/nommu.o
  CC      arch/sh/mm/extable_32.o
  CC      arch/sh/mm/asids-debugfs.o
  CC      kernel/sched.o
  CC      arch/sh/kernel/irq_32.o
  CC      arch/sh/mm/uncached.o
  CC      arch/sh/kernel/machvec.o
  CC      kernel/fork.o
  CC      mm/bootmem.o
  CC      kernel/exec_domain.o
  CC      arch/sh/kernel/nmi_debug.o
  CC      mm/filemap.o
  CC      kernel/panic.o
  CC      kernel/printk.o
  CC      arch/sh/kernel/process.o
  CC      mm/mempool.o
  UPD     include/generated/compile.h
  CC      kernel/cpu.o
  CC      mm/oom_kill.o
  CC      arch/sh/kernel/process_32.o
  CC      arch/sh/kernel/ptrace.o
  CC      kernel/exit.o
  CC      arch/sh/kernel/ptrace_32.o
  CC      mm/fadvise.o
  CC      kernel/itimer.o
  TIMEC   kernel/timeconst.h
  CC      mm/maccess.o
  CC      arch/sh/kernel/reboot.o
  CC      kernel/softirq.o
  CC      init/version.o
  CC      arch/sh/kernel/return_address.o
  CC      mm/page_alloc.o
  CC      arch/sh/kernel/setup.o
  CC      kernel/resource.o
  CC      mm/page-writeback.o
  CC      arch/sh/kernel/signal_32.o
  CC      kernel/sysctl.o
  CC      mm/readahead.o
  CC      kernel/sysctl_binary.o
  CC      arch/sh/kernel/sys_sh.o
  CC      kernel/capability.o
  CC      mm/swap.o
  CC      mm/truncate.o
  CC      kernel/ptrace.o
  CC      arch/sh/kernel/sys_sh32.o
  CC      mm/vmscan.o
  CC      ipc/mqueue.o
  CC      security/commoncap.o
  CC      fs/open.o
  CC      kernel/timer.o
  AS      arch/sh/kernel/syscalls_32.o
  CC      arch/sh/kernel/time.o
  CC      kernel/user.o
  CC      arch/sh/kernel/topology.o
  CC      ipc/msgutil.o
  CC      arch/sh/kernel/traps.o
  CC      arch/sh/kernel/traps_32.o
/home/caritas/projects/mce/kernel/linux-mce.git/mm/bootmem.c: In function 'mark_bootmem':
/home/caritas/projects/mce/kernel/linux-mce.git/mm/bootmem.c:421: warning: control reaches end of non-void function
  CC      kernel/signal.o
  CC      arch/sh/kernel/unwinder.o
  CC      crypto/api.o
  CC      arch/sh/kernel/cpu/irq/imask.o
  CC      kernel/sys.o
  CC      arch/sh/kernel/sh_ksyms_32.o
  CC      kernel/kmod.o
  CC      arch/sh/kernel/module.o
  AS      arch/sh/kernel/cpu/sh2/ex.o
  CC      arch/sh/kernel/disassemble.o
  CC      block/elevator.o
  CC      arch/sh/kernel/perf_event.o
  CC      mm/shmem.o
  CC      arch/sh/kernel/cpu/sh2/probe.o
  CC      arch/sh/kernel/perf_callchain.o
  AS      arch/sh/kernel/cpu/sh2/entry.o
  CC      arch/sh/kernel/io_generic.o
  CC      kernel/workqueue.o
  CC      arch/sh/kernel/hw_breakpoint.o
  AS      arch/sh/kernel/head_32.o
/home/caritas/projects/mce/kernel/linux-mce.git/arch/sh/kernel/cpu/sh2/../../entry-common.S: Assembler messages:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/sh/kernel/cpu/sh2/../../entry-common.S:60: Error: offset out of range
/home/caritas/projects/mce/kernel/linux-mce.git/arch/sh/kernel/cpu/sh2/../../entry-common.S:60: Error: value of 4294967280 too large for field of 2 bytes at 408
/home/caritas/projects/mce/kernel/linux-mce.git/arch/sh/kernel/cpu/sh2/../../entry-common.S:178: Error: offset out of range
/home/caritas/projects/mce/kernel/linux-mce.git/arch/sh/kernel/cpu/sh2/../../entry-common.S:178: Error: value of 4294967280 too large for field of 2 bytes at 598
/home/caritas/projects/mce/kernel/linux-mce.git/arch/sh/kernel/cpu/sh2/../../entry-common.S:326: Error: offset out of range
/home/caritas/projects/mce/kernel/linux-mce.git/arch/sh/kernel/cpu/sh2/../../entry-common.S:326: Error: value of 4294967280 too large for field of 2 bytes at 754
make[5]: *** [arch/sh/kernel/cpu/sh2/entry.o] Error 1
make[5]: *** Waiting for unfinished jobs....
  CC      mm/prio_tree.o
  CC      arch/sh/kernel/init_task.o
  CC      block/blk-core.o
  LD      arch/sh/mm/built-in.o
make[4]: *** [arch/sh/kernel/cpu/sh2] Error 2
make[4]: *** Waiting for unfinished jobs....
  LDS     arch/sh/kernel/vmlinux.lds
  CC      mm/util.o
  CC      mm/mmzone.o
  CC      ipc/mq_sysctl.o
  CC      crypto/cipher.o
  CC      kernel/pid.o
  LD      arch/sh/kernel/cpu/irq/built-in.o
  LD      sound/built-in.o
make[3]: *** [arch/sh/kernel/cpu] Error 2
make[3]: *** Waiting for unfinished jobs....
  CC      crypto/compress.o
  CC      kernel/rcupdate.o
  CC      crypto/algapi.o
  CC      kernel/extable.o
  CC      mm/vmstat.o
  CC      fs/read_write.o
  CC      block/blk-tag.o
  CC      fs/file_table.o
  CC      block/blk-sysfs.o
  LD      firmware/built-in.o
  CC      mm/backing-dev.o
  CC      mm/page_isolation.o
  CC      kernel/params.o
  LD      drivers/auxdisplay/built-in.o
  LD      arch/sh/drivers/dma/built-in.o
  LD      init/mounts.o
  CC      arch/sh/drivers/heartbeat.o
  LD      init/built-in.o
  CC      drivers/base/core.o
  CC      kernel/posix-timers.o
  CC      kernel/kthread.o
  CC      crypto/scatterwalk.o
  CC      mm/mm_init.o
  CC      net/socket.o
  CC      mm/mmu_context.o
  CC      crypto/proc.o
  CC      crypto/ablkcipher.o
  CC      arch/sh/lib/io.o
  CC      mm/nommu.o
  CC      fs/super.o
  CC      mm/init-mm.o
  CC      kernel/wait.o
  CC      kernel/kfifo.o
  LD      security/built-in.o
  CC      drivers/base/sys.o
  CC      mm/memblock.o
  CC      crypto/blkcipher.o
  CC      drivers/block/brd.o
  CC      crypto/ahash.o
  CC      lib/bcd.o
  CC      kernel/sys_ni.o
  AS      arch/sh/lib/ashiftrt.o
  CC      kernel/posix-cpu-timers.o
  CC      mm/dmapool.o
  CC      crypto/shash.o
  CC      kernel/mutex.o
  CC      fs/char_dev.o
  CC      arch/sh/lib/ashldi3.o
  CC      mm/slab.o
  CC      kernel/hrtimer.o
  CC      kernel/rwsem.o
  CC      mm/percpu_up.o
  CC      drivers/base/bus.o
  CC      mm/quicklist.o
  CC      kernel/nsproxy.o
  AS      arch/sh/lib/ashlsi3.o
  CC      lib/div64.o
  CC      arch/sh/lib/ashrdi3.o
  CC      drivers/base/dd.o
  AS      arch/sh/lib/ashrsi3.o
  AS      arch/sh/lib/checksum.o
  CC      drivers/block/loop.o
  CC      arch/sh/lib/delay.o
make[2]: *** [arch/sh/kernel] Error 2
make[2]: *** Waiting for unfinished jobs....
  CC      arch/sh/lib/div64-generic.o
  CC      lib/sort.o
  LD      net/802/built-in.o
  AS      arch/sh/lib/div64.o
  CC      block/blk-barrier.o
  CC      kernel/srcu.o
  LD      arch/sh/drivers/built-in.o
  CC      fs/stat.o
  CC      net/core/sock.o
  CC      arch/sh/lib/lshrdi3.o
  CC      kernel/semaphore.o
  AS      arch/sh/lib/lshrsi3.o
  CC      kernel/notifier.o
  AS      arch/sh/lib/memchr.o
  CC      crypto/algboss.o
  CC      kernel/ksysfs.o
  CC      block/blk-settings.o
  CC      kernel/pm_qos_params.o
  LD      drivers/cdrom/built-in.o
  CC      kernel/sched_clock.o
  CC      drivers/char/mem.o
  CC      drivers/clocksource/sh_cmt.o
  CC      crypto/testmgr.o
  CC      lib/parser.o
  CC      block/blk-ioc.o
  CC      drivers/base/driver.o
  LD      drivers/crypto/built-in.o
  CC      crypto/crypto_wq.o
  AS      arch/sh/lib/memcpy.o
  CC      kernel/cred.o
  CC      lib/halfmd4.o
  LD      drivers/firmware/built-in.o
  AS      arch/sh/lib/memmove.o
  CC      fs/exec.o
  CC      lib/debug_locks.o
  CC      kernel/async.o
  AS      arch/sh/lib/memset.o
  CC      crypto/aead.o
  AS      arch/sh/lib/movmem.o
  LD      drivers/gpio/built-in.o
  CC      crypto/chainiv.o
  CC      fs/pipe.o
  CC      crypto/eseqiv.o
  AS      arch/sh/lib/strlen.o
  AS      arch/sh/lib/udiv_qrnnd.o
  CC      kernel/range.o
/home/caritas/projects/mce/kernel/linux-mce.git/kernel/pm_qos_params.c: In function 'pm_qos_get_value':
/home/caritas/projects/mce/kernel/linux-mce.git/kernel/pm_qos_params.c:132: warning: control reaches end of non-void function
  AS      arch/sh/lib/udivsi3.o
  AS      arch/sh/lib/udivsi3_i4i-Os.o
  CC      fs/namei.o
  LD      arch/sh/lib/built-in.o
  LD      drivers/gpu/drm/i2c/built-in.o
  CC      kernel/groups.o
  CC      block/blk-map.o
  CC      crypto/pcompress.o
  AR      arch/sh/lib/lib.a
  LD      drivers/gpu/vga/built-in.o
  LD      drivers/gpu/drm/built-in.o
  CC      crypto/md5.o
  CC      kernel/irq/handle.o
  CC      kernel/futex.o
  CC      lib/random32.o
  CC      kernel/irq/manage.o
  LD      drivers/gpu/built-in.o
  CC      kernel/rtmutex.o
  CC      lib/bust_spinlocks.o
  CC      kernel/time/timekeeping.o
  CC      kernel/irq/spurious.o
  CC      block/blk-exec.o
  CC      lib/hexdump.o
  CC      drivers/base/class.o
  CC      crypto/cbc.o
  CC      drivers/base/platform.o
  CC      lib/kasprintf.o
  CC      kernel/time/ntp.o
  CC      drivers/base/cpu.o
  CC      drivers/base/firmware.o
  CC      drivers/base/init.o
  CC      kernel/up.o
  CC      drivers/hid/hid-core.o
  CC      crypto/des_generic.o
  CC      kernel/uid16.o
  CC      drivers/char/random.o
  CC      kernel/module.o
  CC      fs/fcntl.o
  CC      fs/ioctl.o
  CC      kernel/kallsyms.o
  CC      block/blk-merge.o
  CC      net/core/request_sock.o
  CC      crypto/rng.o
  CC      fs/readdir.o
  CC      crypto/krng.o
  CC      kernel/hung_task.o
  LD      ipc/built-in.o
  LD      drivers/clocksource/built-in.o
  CC      block/blk-softirq.o
  CC      drivers/hwmon/hwmon.o
  CC      kernel/rcutree.o
  CC      drivers/base/map.o
  CC      lib/bitmap.o
  CC      kernel/irq/resend.o
  CC      lib/scatterlist.o
  CC      drivers/i2c/i2c-boardinfo.o
  CC      block/blk-timeout.o
  CC      block/blk-iopoll.o
  CC      drivers/base/devres.o
  CC      kernel/utsname_sysctl.o
  CC      kernel/elfcore.o
  CC      drivers/base/attribute_container.o
  CC      lib/string_helpers.o
  CC      drivers/base/transport_class.o
  CC      lib/gcd.o
  CC      kernel/perf_event.o
  LD      crypto/crypto.o
  LD      crypto/crypto_algapi.o
  LD      crypto/crypto_blkcipher.o
  CC      kernel/hw_breakpoint.o
  LD      crypto/crypto_hash.o
  LD      crypto/cryptomgr.o
  CC      fs/select.o
  CC      fs/fifo.o
  CC      drivers/hid/hid-input.o
  CC      net/core/skbuff.o
  LD      drivers/idle/built-in.o
  LD      drivers/base/power/built-in.o
  CC      fs/dcache.o
  CC      drivers/base/dma-mapping.o
  LD      drivers/ieee1394/built-in.o
  CC      drivers/char/tty_io.o
  CC      lib/lcm.o
  CC      kernel/time.o
  LD      drivers/block/built-in.o
  CC      lib/list_sort.o
  CC      kernel/irq/chip.o
  LD      drivers/ieee802154/built-in.o
  CC      lib/uuid.o
  LD      drivers/i2c/algos/built-in.o
  LD      drivers/hwmon/built-in.o
  CC      block/blk-lib.o
  CC      net/ethernet/eth.o
  CC      drivers/base/dma-coherent.o
  LD      drivers/lguest/built-in.o
  LD      drivers/macintosh/built-in.o
  CC      drivers/input/input.o
  LD      drivers/i2c/busses/built-in.o
  CC      lib/iomap_copy.o
  CC      kernel/irq/devres.o
  CC      block/ioctl.o
  CC      kernel/irq/proc.o
  CC      block/genhd.o
  CC      net/ipv4/route.o
  LD      drivers/mfd/built-in.o
  LD      drivers/i2c/muxes/built-in.o
  CC [M]  drivers/i2c/i2c-core.o
  CC      drivers/hid/hid-debug.o
  CC      lib/devres.o
  LD      drivers/media/IR/keymaps/built-in.o
  CC      fs/inode.o
  LD      drivers/misc/cb710/built-in.o
  CC      net/core/iovec.o
  LD      drivers/misc/eeprom/built-in.o
  CC      kernel/time/clocksource.o
  LD      drivers/media/IR/built-in.o
  CC      lib/find_last_bit.o
  CC      fs/attr.o
  CC      drivers/base/module.o
  CC      net/netlink/af_netlink.o
  LD      drivers/misc/built-in.o
  CC      drivers/char/n_tty.o
  CC      fs/bad_inode.o
  CC      drivers/input/input-compat.o
  CC      fs/file.o
  LD      drivers/media/common/tuners/built-in.o
  LD      drivers/media/common/built-in.o
  CC      lib/hweight.o
/home/caritas/projects/mce/kernel/linux-mce.git/kernel/perf_event.c:92: warning: 'perf_pmu_rotate_stop' defined but not used
  CC      fs/filesystems.o
  CC      lib/kernel_lock.o
  CC      drivers/input/ff-core.o
/home/caritas/projects/mce/kernel/linux-mce.git/fs/dcache.c: In function 'd_materialise_unique':
/home/caritas/projects/mce/kernel/linux-mce.git/fs/dcache.c:1899: warning: control reaches end of non-void function
  CC      drivers/input/mousedev.o
  CC      net/ipv4/inetpeer.o
  CC      fs/namespace.o
  CC      lib/smp_processor_id.o
  LD      drivers/media/video/davinci/built-in.o
  CC      net/core/datagram.o
  CC      kernel/time/jiffies.o
  CC      kernel/time/timer_list.o
  LD      drivers/media/video/built-in.o
  CC      kernel/time/timecompare.o
  CC      block/scsi_ioctl.o
  CC      net/core/stream.o
  LD      drivers/media/built-in.o
  CC      lib/bitrev.o
  CC      net/netlink/genetlink.o
  HOSTCC  lib/gen_crc32table
  LD      drivers/i2c/built-in.o
  CC      net/packet/af_packet.o
  CC      block/noop-iosched.o
  LD      drivers/platform/built-in.o
  CC      drivers/net/Space.o
  CC      block/deadline-iosched.o
  CC      block/cfq-iosched.o
  CC      fs/seq_file.o
  LD      crypto/built-in.o
  CC      drivers/char/tty_ioctl.o
  CC      drivers/rtc/rtc-lib.o
  LD      drivers/serial/built-in.o
  LD      drivers/base/built-in.o
  CC      kernel/time/timeconv.o
  CC      drivers/sh/clk.o
  CC      net/core/scm.o
  CC      net/core/gen_stats.o
  CC      lib/syscall.o
  CC      drivers/scsi/scsi.o
  CC      drivers/char/tty_ldisc.o
  CC      kernel/time/clockevents.o
  LD      kernel/irq/built-in.o
  CC      kernel/time/tick-common.o
  CC      lib/nlattr.o
  CC      drivers/sh/intc.o
  LD      net/ethernet/built-in.o
  CC      drivers/sh/clk-cpg.o
  CC      fs/xattr.o
  CC      lib/atomic64.o
  CC      drivers/video/fb_notify.o
  CC      net/sched/sch_generic.o
  CC      lib/argv_split.o
  CC      fs/libfs.o
  CC      net/core/gen_estimator.o
  CC      fs/fs-writeback.o
  CC      drivers/char/tty_buffer.o
  CC      fs/pnode.o
  CC      drivers/net/loopback.o
  CC      fs/drop_caches.o
  CC      fs/splice.o
  CC      lib/bug.o
  CC      fs/sync.o
  CC      net/core/net_namespace.o
  CC      drivers/char/tty_port.o
  CC      net/core/sysctl_net_core.o
  CC      drivers/char/tty_mutex.o
  CC      drivers/char/pty.o
  CC      drivers/scsi/hosts.o
  CC      net/sched/sch_mq.o
  LD      drivers/rtc/built-in.o
  LD      drivers/watchdog/built-in.o
  CC      net/core/dev.o
  CC      lib/cmdline.o
  CC      net/core/ethtool.o
  CC      lib/ctype.o
/home/caritas/projects/mce/kernel/linux-mce.git/block/cfq-iosched.c: In function 'cfq_async_queue_prio':
/home/caritas/projects/mce/kernel/linux-mce.git/block/cfq-iosched.c:2941: warning: control reaches end of non-void function
  CC      net/core/dev_addr_lists.o
  CC      lib/dec_and_lock.o
  CC      net/sunrpc/clnt.o
  CC      fs/utimes.o
  LD      drivers/net/wireless/built-in.o
  CC      net/core/dst.o
  CC      fs/stack.o
  CC      fs/fs_struct.o
  LD      net/wireless/built-in.o
  CC      lib/decompress.o
  CC      net/unix/af_unix.o
  CC      drivers/char/misc.o
  CC      net/core/netevent.o
  CC      drivers/char/vt_ioctl.o
  CC      net/xfrm/xfrm_policy.o
  LD      kernel/time/built-in.o
  CC      lib/dump_stack.o
  CC      net/core/neighbour.o
  CC      drivers/char/vc_screen.o
  CC      lib/extable.o
  CC      fs/statfs.o
  CC      lib/find_next_bit.o
  CC      drivers/video/fbmem.o
  CC      drivers/char/selection.o
  CC      fs/buffer.o
  CC      net/core/rtnetlink.o
  CC      drivers/char/keyboard.o
  CC      fs/bio.o
  CC      net/xfrm/xfrm_state.o
  CC      fs/block_dev.o
  LD      drivers/net/built-in.o
  CC      fs/direct-io.o
  CC      net/ipv4/protocol.o
  CC      net/core/utils.o
  LD      drivers/input/input-core.o
  LD      drivers/input/built-in.o
  CC      lib/flex_array.o
  CC      net/sunrpc/xprt.o
  CC      net/core/link_watch.o
  CC      net/ipv4/ip_input.o
  CC      fs/mpage.o
  CC      lib/idr.o
  CC      net/sysctl_net.o
  CC      drivers/char/consolemap.o
  CC      lib/int_sqrt.o
  CC      fs/ioprio.o
  LD      mm/built-in.o
  CC      fs/debugfs/inode.o
  CC      lib/irq_regs.o
  CC      drivers/video/fbmon.o
  CC      fs/devpts/inode.o
  CONMK   drivers/char/consolemap_deftbl.c
  CC      drivers/char/vt.o
  CC      lib/is_single_threaded.o
  CC      net/core/filter.o
  CC      lib/klist.o
  CC      net/core/flow.o
  CC      net/core/net-sysfs.o
  CC      drivers/video/fbcmap.o
  CC      lib/kobject.o
  SHIPPED drivers/char/defkeymap.c
  CC      drivers/char/sysrq.o
  CC      net/ipv4/ip_fragment.o
  CC      fs/ext2/balloc.o
  CC      lib/kobject_uevent.o
  CC      net/xfrm/xfrm_hash.o
  CC      fs/jbd/transaction.o
  CC      net/ipv4/ip_forward.o
  CC      net/unix/garbage.o
  CC      drivers/char/hw_random/core.o
  CC      net/ipv4/ip_options.o
  CC      fs/ext3/balloc.o
  CC      drivers/scsi/scsi_ioctl.o
  CC      drivers/video/fbsysfs.o
  CC      drivers/scsi/constants.o
  CC      lib/kref.o
  CC      fs/lockd/clntlock.o
  CC      lib/plist.o
  CC      fs/ext2/dir.o
  CC      fs/minix/bitmap.o
  LD      net/netlink/built-in.o
  CC      fs/ext2/file.o
  CC      fs/ext3/bitmap.o
  CC      lib/prio_heap.o
  LD      fs/devpts/devpts.o
  LD      fs/devpts/built-in.o
  CC      fs/debugfs/file.o
  CC      lib/prio_tree.o
  CC      drivers/char/consolemap_deftbl.o
/home/caritas/projects/mce/kernel/linux-mce.git/net/xfrm/xfrm_policy.c: In function 'xfrm_policy_register_afinfo':
/home/caritas/projects/mce/kernel/linux-mce.git/net/xfrm/xfrm_policy.c:2393: warning: 'xfrm_dst_ops' may be used uninitialized in this function
  CC      net/xfrm/xfrm_input.o
  LD      fs/nfs_common/built-in.o
  LD      drivers/sh/built-in.o
  CC      net/xfrm/xfrm_output.o
  CC      drivers/char/defkeymap.o
  CC      fs/notify/fsnotify.o
  CC      lib/proportions.o
  LD      drivers/char/hw_random/rng-core.o
  LD      net/sched/built-in.o
  CC      fs/nfs/client.o
  LD      drivers/char/hw_random/built-in.o
  CC      net/sunrpc/socklib.o
  CC      lib/radix-tree.o
  CC      drivers/video/modedb.o
/home/caritas/projects/mce/kernel/linux-mce.git/net/packet/af_packet.c: In function 'tpacket_rcv':
/home/caritas/projects/mce/kernel/linux-mce.git/net/packet/af_packet.c:657: warning: 'hdrlen' may be used uninitialized in this function
  CC      fs/ext3/dir.o
  CC      lib/ratelimit.o
  CC      lib/rbtree.o
  CC      fs/ext3/file.o
  CC      fs/ext2/ialloc.o
  CC      fs/partitions/check.o
  CC      lib/reciprocal_div.o
  CC      drivers/scsi/scsicam.o
  CC      lib/rwsem-spinlock.o
  CC      net/unix/sysctl_net_unix.o
  CC      lib/sha1.o
  CC      drivers/video/fbcvt.o
  CC      net/sunrpc/xprtsock.o
  CC      fs/minix/itree_v1.o
  CC      net/xfrm/xfrm_algo.o
  LD      fs/quota/built-in.o
  CC      fs/ramfs/inode.o
  LD      drivers/video/backlight/built-in.o
  CC      fs/notify/notification.o
  CC      fs/romfs/storage.o
  CC      lib/show_mem.o
  CC      fs/romfs/super.o
  CC      fs/proc/nommu.o
  CC      drivers/video/console/dummycon.o
  LD      fs/debugfs/debugfs.o
  CC      net/sunrpc/sched.o
  LD      fs/debugfs/built-in.o
  CC      lib/string.o
  CC      net/ipv4/ip_output.o
  CC      fs/minix/itree_v2.o
  CC      fs/sysfs/inode.o
  CC      fs/eventpoll.o
  CC      fs/ext2/inode.o
  CC      fs/ext3/fsync.o
  CC      lib/vsprintf.o
  CC      fs/anon_inodes.o
  CC      net/xfrm/xfrm_sysctl.o
  LD      drivers/video/display/built-in.o
  CC      net/sunrpc/auth.o
  CC      net/ipv4/ip_sockglue.o
  CC      fs/ext2/ioctl.o
  CC      net/sunrpc/auth_null.o
  CC      drivers/video/logo/logo.o
  CC      drivers/scsi/scsi_error.o
  CC      fs/sysfs/file.o
  CC      fs/notify/group.o
  CC      fs/lockd/clntproc.o
  CC      fs/signalfd.o
  CC      net/ipv4/inet_hashtables.o
  CC      drivers/scsi/scsi_lib.o
  CC      fs/ramfs/file-nommu.o
  GEN     lib/crc32table.h
  CC      fs/ext3/ialloc.o
  CC      fs/sysfs/dir.o
  CC      fs/proc/task_nommu.o
  CC      fs/lockd/host.o
  CC      lib/crc32.o
  CC      fs/timerfd.o
  CC      fs/ext2/namei.o
  CC      fs/ext2/super.o
  LOGO    drivers/video/logo/logo_superh_clut224.c
  CC      fs/ext3/inode.o
  CC      fs/minix/namei.o
  LOGO    drivers/video/logo/logo_linux_mono.c
  LD      drivers/video/omap2/displays/built-in.o
  LOGO    drivers/video/logo/logo_superh_mono.c
  CC      fs/jbd/commit.o
  LOGO    drivers/video/logo/clut_vga16.c
  CC      fs/eventfd.o
  LOGO    drivers/video/logo/logo_blackfin_vga16.c
  CC      fs/ext2/symlink.o
  CC      drivers/video/console/fbcon.o
  LOGO    drivers/video/logo/logo_linux_vga16.c
  LD      drivers/video/omap2/dss/built-in.o
  LOGO    drivers/video/logo/logo_superh_vga16.c
  CC      fs/lockd/svc.o
  CC      fs/partitions/msdos.o
  LOGO    drivers/video/logo/logo_blackfin_clut224.c
  CC      fs/notify/inode_mark.o
  CC      fs/proc/inode.o
  LOGO    drivers/video/logo/logo_dec_clut224.c
  LD      drivers/video/omap2/omapfb/built-in.o
  CC      fs/notify/mark.o
  LOGO    drivers/video/logo/logo_linux_clut224.c
  LD      net/unix/unix.o
  LOGO    drivers/video/logo/logo_m32r_clut224.c
  LD      drivers/video/omap2/built-in.o
  LD      net/unix/built-in.o
  LOGO    drivers/video/logo/logo_mac_clut224.c
  CC      fs/ext3/ioctl.o
  LOGO    drivers/video/logo/logo_parisc_clut224.c
  LOGO    drivers/video/logo/logo_sgi_clut224.c
  LOGO    drivers/video/logo/logo_spe_clut224.c
  CC      fs/notify/vfsmount_mark.o
  LOGO    drivers/video/logo/logo_sun_clut224.c
  CC      fs/nfs/dir.o
  CC      drivers/video/fb_defio.o
  CC      drivers/video/logo/logo_superh_clut224.o
  CC      fs/lockd/svclock.o
  CC      drivers/video/output.o
  CC      drivers/scsi/scsi_lib_dma.o
  CC      fs/ext3/namei.o
  CC      fs/minix/inode.o
  CC      fs/sysfs/symlink.o
  CC      fs/aio.o
  CC      fs/proc/root.o
  LD      drivers/video/logo/built-in.o
  CC      fs/notify/dnotify/dnotify.o
  CC [M]  drivers/video/sysfillrect.o
  CC [M]  drivers/video/syscopyarea.o
  CC      fs/minix/file.o
  CC      fs/sysfs/mount.o
  LD      net/packet/built-in.o
  LD      fs/ramfs/ramfs.o
  CC      fs/sysfs/bin.o
  LD      fs/ramfs/built-in.o
  CC      fs/ext3/super.o
  CC      fs/locks.o
  CC [M]  drivers/video/sysimgblt.o
  CC      fs/minix/dir.o
  LD      lib/built-in.o
  LD      kernel/built-in.o
  LD      fs/romfs/romfs.o
  CC      drivers/scsi/scsi_scan.o
  CC      fs/lockd/svcshare.o
  LD      fs/notify/fanotify/built-in.o
  LD      fs/romfs/built-in.o
  CC      fs/binfmt_script.o
  CC      fs/ext3/symlink.o
  CC      drivers/scsi/scsi_sysfs.o
  CC      fs/notify/inotify/inotify_fsnotify.o
  CC      fs/nfs/file.o
  CC      fs/ext3/hash.o
  CC      fs/notify/inotify/inotify_user.o
  LD      block/built-in.o
  CC      fs/ext3/resize.o
  CC      fs/lockd/svcproc.o
  CC      net/sunrpc/auth_unix.o
  CC      drivers/scsi/scsi_devinfo.o
  CC      net/sunrpc/auth_generic.o
  CC      fs/binfmt_elf_fdpic.o
  CC [M]  drivers/video/fb_sys_fops.o
  CC      fs/proc/base.o
  CC      fs/mbcache.o
  CC      fs/sysfs/group.o
  LD      fs/partitions/built-in.o
  CC      net/ipv4/inet_timewait_sock.o
  CC      net/ipv4/inet_connection_sock.o
  CC      fs/proc/generic.o
  CC      drivers/scsi/scsi_sysctl.o
  CC      net/ipv4/tcp.o
  CC      fs/lockd/svcsubs.o
  CC      drivers/video/console/bitblit.o
  CC      fs/lockd/mon.o
  CC      fs/lockd/xdr.o
  CC      fs/ext3/ext3_jbd.o
  CC      drivers/scsi/scsi_proc.o
  CC [M]  drivers/video/sh_mobile_lcdcfb.o
  CC      fs/proc/array.o
  CC      fs/ext3/xattr.o
  CC      fs/proc/proc_tty.o
  LD      drivers/video/fb.o
  CC      drivers/video/console/fonts.o
  LD      fs/notify/dnotify/built-in.o
  CC      fs/jbd/recovery.o
  CC      net/sunrpc/svc.o
  CC      net/ipv4/tcp_input.o
  CC      drivers/scsi/scsi_trace.o
  CC      drivers/scsi/sd.o
  CC      drivers/scsi/scsi_transport_spi.o
  CC      fs/nfs/getroot.o
  CC [M]  drivers/scsi/scsi_wait_scan.o
  CC      fs/lockd/grace.o
  LD      fs/minix/minix.o
  CC      fs/nfs/inode.o
  LD      fs/sysfs/built-in.o
  LD      fs/minix/built-in.o
  CC      fs/nfs/super.o
  LD      fs/ext2/ext2.o
  AR      lib/lib.a
  CC      net/ipv4/tcp_output.o
  LD      fs/ext2/built-in.o
  CC      fs/ext3/xattr_user.o
  CC      fs/jbd/checkpoint.o
  CC      fs/lockd/xdr4.o
  CC      fs/nfs/nfs2xdr.o
  LD      net/core/built-in.o
  CC      fs/jbd/revoke.o
  CC      net/sunrpc/svcsock.o
  CC      net/sunrpc/svcauth.o
  CC      fs/jbd/journal.o
  CC      net/ipv4/tcp_timer.o
  CC      fs/ext3/xattr_trusted.o
  CC      fs/lockd/svc4proc.o
  CC      drivers/video/console/font_8x16.o
  CC      fs/nfs/direct.o
  CC      net/sunrpc/svcauth_unix.o
  CC      fs/proc/cmdline.o
  CC      net/ipv4/tcp_ipv4.o
  CC      fs/proc/cpuinfo.o
  LD      drivers/hid/hid.o
  CC      net/ipv4/tcp_minisocks.o
  LD      drivers/hid/built-in.o
  CC      fs/proc/devices.o
  CC      fs/nfs/pagelist.o
  CC      net/sunrpc/addr.o
  CC      fs/proc/interrupts.o
  CC      drivers/video/console/softcursor.o
  CC      fs/proc/loadavg.o
  LD      net/xfrm/built-in.o
  CC      fs/proc/meminfo.o
  CC      net/ipv4/tcp_cong.o
  CC      net/sunrpc/rpcb_clnt.o
  LD      drivers/video/console/font.o
  CC      net/sunrpc/timer.o
  CC      fs/nfs/proc.o
  CC      fs/proc/stat.o
  CC      fs/proc/uptime.o
  CC      fs/nfs/read.o
  LD      fs/notify/inotify/built-in.o
  CC      net/ipv4/datagram.o
  LD      fs/notify/built-in.o
  CC      fs/proc/version.o
  CC      fs/nfs/symlink.o
  CC      net/sunrpc/xdr.o
  CC      fs/proc/softirqs.o
  CC      net/ipv4/raw.o
  CC      fs/proc/proc_sysctl.o
  CC      net/ipv4/udp.o
  CC      net/sunrpc/sunrpc_syms.o
  CC      fs/proc/proc_net.o
  CC      fs/proc/kmsg.o
  CC      fs/nfs/unlink.o
  CC      net/ipv4/udplite.o
  CC      net/sunrpc/cache.o
  CC      fs/nfs/write.o
  CC      net/sunrpc/rpc_pipe.o
  CC      net/sunrpc/svc_xprt.o
  CC      net/sunrpc/stats.o
  CC      fs/nfs/namespace.o
  CC      fs/nfs/mount_clnt.o
  CC      fs/nfs/dns_resolve.o
  CC      fs/nfs/cache_lib.o
  CC      net/sunrpc/sysctl.o
  CC      net/ipv4/arp.o
  CC      fs/nfs/nfsroot.o
  CC      fs/nfs/nfs3proc.o
  CC      fs/nfs/nfs3xdr.o
  CC      net/sunrpc/auth_gss/auth_gss.o
  CC      net/sunrpc/auth_gss/gss_generic_token.o
  CC      fs/nfs/sysctl.o
  CC      net/ipv4/icmp.o
  CC      net/ipv4/devinet.o
  CC      net/sunrpc/auth_gss/gss_mech_switch.o
  CC      net/ipv4/af_inet.o
  CC      net/ipv4/igmp.o
  CC      net/ipv4/fib_frontend.o
  CC      net/sunrpc/auth_gss/svcauth_gss.o
  CC      net/sunrpc/auth_gss/gss_krb5_mech.o
  CC      net/ipv4/fib_semantics.o
  CC      net/ipv4/inet_fragment.o
  CC      net/sunrpc/auth_gss/gss_krb5_seal.o
  CC      net/ipv4/sysctl_net_ipv4.o
  CC      net/ipv4/fib_hash.o
  CC      net/sunrpc/auth_gss/gss_krb5_unseal.o
  CC      net/sunrpc/auth_gss/gss_krb5_seqnum.o
  CC      net/ipv4/proc.o
  CC      net/ipv4/xfrm4_mode_beet.o
  LD      fs/jbd/jbd.o
  CC      net/ipv4/xfrm4_mode_transport.o
  CC      net/ipv4/xfrm4_mode_tunnel.o
  LD      fs/jbd/built-in.o
  CC      net/sunrpc/auth_gss/gss_krb5_wrap.o
  CC      net/sunrpc/auth_gss/gss_krb5_crypto.o
  CC      net/ipv4/ipconfig.o
  CC      net/sunrpc/auth_gss/gss_krb5_keys.o
  CC      net/ipv4/inet_diag.o
  LD      fs/lockd/lockd.o
  CC      net/ipv4/tcp_diag.o
  CC      net/ipv4/tcp_cubic.o
  CC      net/ipv4/xfrm4_policy.o
  LD      fs/lockd/built-in.o
  CC      net/ipv4/xfrm4_state.o
  LD      fs/proc/proc.o
  CC      net/ipv4/xfrm4_input.o
/home/caritas/projects/mce/kernel/linux-mce.git/net/sunrpc/svcauth_unix.c: In function 'svcauth_unix_set_client':
/home/caritas/projects/mce/kernel/linux-mce.git/net/sunrpc/svcauth_unix.c:690: warning: 'sin6' may be used uninitialized in this function
  LD      fs/proc/built-in.o
  CC      net/ipv4/xfrm4_output.o
  LD      drivers/video/console/built-in.o
  LD      drivers/video/built-in.o
  LD      drivers/scsi/scsi_mod.o
  LD      drivers/scsi/sd_mod.o
  LD      drivers/scsi/built-in.o
  LD      fs/ext3/ext3.o
  LD      fs/ext3/built-in.o
  LD      fs/nfs/nfs.o
  LD      fs/nfs/built-in.o
  LD      net/sunrpc/sunrpc.o
  LD      fs/built-in.o
  LD      drivers/char/built-in.o
  LD      drivers/built-in.o
  LD      net/sunrpc/auth_gss/auth_rpcgss.o
  LD      net/sunrpc/auth_gss/rpcsec_gss_krb5.o
  LD      net/sunrpc/auth_gss/built-in.o
  LD      net/sunrpc/built-in.o
  LD      net/ipv4/built-in.o
  LD      net/built-in.o
make[1]: *** [sub-make] Error 2
make: *** [all] Error 2

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH -tip -v4] irq_work: generic hard-irq context callbacks
  2010-09-16  6:59           ` Huang Ying
@ 2010-09-16  7:03             ` Paul Mundt
  0 siblings, 0 replies; 18+ messages in thread
From: Paul Mundt @ 2010-09-16  7:03 UTC (permalink / raw)
  To: Huang Ying
  Cc: Matt Fleming, Peter Zijlstra, Martin Schwidefsky, Ingo Molnar,
	H. Peter Anvin, paulus, linux-kernel, Andi Kleen, dhowells,
	Russell King, Kyle McMartin, davem, Linux-Arch

On Thu, Sep 16, 2010 at 02:59:22PM +0800, Huang Ying wrote:
> On Wed, 2010-09-15 at 16:50 +0800, Matt Fleming wrote:
> > On Wed, Sep 15, 2010 at 10:28:40AM +0200, Peter Zijlstra wrote:
> > > 
> > > I've got a patch to solve the Alpha issue, and I've got a patch for one
> > > of the SH issues as well, but I understand you need to pull in Paul
> > > Mundt's SH tree to make it fully build.
> > 
> > FWIW this is the commit that is missing in Linus' tree which fixes the
> > build issues,
> > 
> > http://git.kernel.org/?p=linux/kernel/git/lethal/sh-2.6.git;a=commit;h=b9afa3e015273a52718e0a7efe198a0df76be880
> > 
> > I'm guessing Paul will be sending a pull request to fix this breakage
> > before 2.6.36 is released.
> 
> I have compile error even after merging full sh-2.6.git. Log is
> attached. I need a newer compiler?
> 
This is an issue with old versions of binutils, so simply using a more
recent version will be fine. If you don't feel like building one
yourself, you can just use the CodeSourcery one, which is generally the
most recent.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH -tip -v4] irq_work: generic hard-irq context callbacks
  2010-09-15  8:28       ` Peter Zijlstra
  2010-09-15  8:50         ` Matt Fleming
@ 2010-09-16  8:57         ` Huang Ying
  2010-09-17 12:37         ` David Howells
  2010-09-23 20:12         ` David Howells
  3 siblings, 0 replies; 18+ messages in thread
From: Huang Ying @ 2010-09-16  8:57 UTC (permalink / raw)
  To: dhowells
  Cc: Peter Zijlstra, Martin Schwidefsky, Ingo Molnar, H. Peter Anvin,
	paulus, linux-kernel, Andi Kleen, Russell King, Kyle McMartin,
	davem, Linux-Arch, Matt Fleming

Hi, David,

On Wed, 2010-09-15 at 16:28 +0800, Peter Zijlstra wrote:
> FRV is one of those architectures that doesn't build a toolchain from
> plain gcc sources, David Howells did provide me with a toolchain for
> that, it does build, but really it should be getting its toolchain
> sorted upstream.

Where can I find latest FRV cross compiler workable for Linux kernel?

Best Regards,
Huang Ying


^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH -tip -v4] irq_work: generic hard-irq context callbacks
  2010-09-15  8:28       ` Peter Zijlstra
  2010-09-15  8:50         ` Matt Fleming
  2010-09-16  8:57         ` Huang Ying
@ 2010-09-17 12:37         ` David Howells
  2010-09-23 20:12         ` David Howells
  3 siblings, 0 replies; 18+ messages in thread
From: David Howells @ 2010-09-17 12:37 UTC (permalink / raw)
  To: Huang Ying
  Cc: dhowells, Peter Zijlstra, Martin Schwidefsky, Ingo Molnar,
	H. Peter Anvin, paulus, linux-kernel, Andi Kleen, Russell King,
	Kyle McMartin, davem, Linux-Arch, Matt Fleming

Huang Ying <ying.huang@intel.com> wrote:

> Where can I find latest FRV cross compiler workable for Linux kernel?

I'm trying to get a fairly current one put up on FTP somewhere.

David

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH -tip -v4] irq_work: generic hard-irq context callbacks
  2010-09-15  8:28       ` Peter Zijlstra
                           ` (2 preceding siblings ...)
  2010-09-17 12:37         ` David Howells
@ 2010-09-23 20:12         ` David Howells
  2010-09-26  0:40           ` Huang Ying
  2010-09-26  7:32           ` David Howells
  3 siblings, 2 replies; 18+ messages in thread
From: David Howells @ 2010-09-23 20:12 UTC (permalink / raw)
  To: Huang Ying
  Cc: dhowells, Peter Zijlstra, Martin Schwidefsky, Ingo Molnar,
	H. Peter Anvin, paulus, linux-kernel, Andi Kleen, Russell King,
	Kyle McMartin, davem, Linux-Arch, Matt Fleming

Huang Ying <ying.huang@intel.com> wrote:

> Where can I find latest FRV cross compiler workable for Linux kernel?

Look in here:

	ftp://ftp.ges.redhat.com/frv/

There's a toolchain here:

	ftp://ftp.ges.redhat.com/frv/i686-pc-linux-gnulibc2.3-x-frv-linux-gnu.tar.bz2

plus sources.

David

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH -tip -v4] irq_work: generic hard-irq context callbacks
  2010-09-23 20:12         ` David Howells
@ 2010-09-26  0:40           ` Huang Ying
  2010-09-26  7:32           ` David Howells
  1 sibling, 0 replies; 18+ messages in thread
From: Huang Ying @ 2010-09-26  0:40 UTC (permalink / raw)
  To: David Howells
  Cc: Peter Zijlstra, Martin Schwidefsky, Ingo Molnar, H. Peter Anvin,
	paulus, linux-kernel, Andi Kleen, Russell King, Kyle McMartin,
	davem, Linux-Arch, Matt Fleming

[-- Attachment #1: Type: text/plain, Size: 445 bytes --]

On Fri, 2010-09-24 at 04:12 +0800, David Howells wrote:
> Huang Ying <ying.huang@intel.com> wrote:
> 
> > Where can I find latest FRV cross compiler workable for Linux kernel?
> 
> Look in here:
> 
> 	ftp://ftp.ges.redhat.com/frv/
> 
> There's a toolchain here:
> 
> 	ftp://ftp.ges.redhat.com/frv/i686-pc-linux-gnulibc2.3-x-frv-linux-gnu.tar.bz2
> 
> plus sources.

Sorry, still have compile error, build log attached.

Best Regards,
Huang Ying

[-- Attachment #2: log_frv --]
[-- Type: text/plain, Size: 157891 bytes --]

make -C /home/caritas/projects/mce/kernel/linux-mce.git O=/home/caritas/projects/mce/kernel/build-cross/obj-frv/. 
  HOSTCC  scripts/basic/fixdep
  GEN     /home/caritas/projects/mce/kernel/build-cross/obj-frv/Makefile
  HOSTCC  scripts/basic/docproc
  HOSTCC  scripts/basic/hash
  HOSTCC  scripts/kconfig/conf.o
  HOSTCC  scripts/kconfig/kxgettext.o
  HOSTCC  scripts/kconfig/zconf.tab.o
  HOSTLD  scripts/kconfig/conf
scripts/kconfig/conf --silentoldconfig arch/frv/Kconfig
  GEN     /home/caritas/projects/mce/kernel/build-cross/obj-frv/Makefile
  CHK     include/linux/version.h
  UPD     include/linux/version.h
  CHK     include/generated/utsrelease.h
  UPD     include/generated/utsrelease.h
  Using /home/caritas/projects/mce/kernel/linux-mce.git as source for kernel
  HOSTCC  scripts/kallsyms
  CC      scripts/mod/empty.o
  HOSTCC  scripts/mod/mk_elfconfig
  MKELF   scripts/mod/elfconfig.h
  HOSTCC  scripts/mod/file2alias.o
  HOSTCC  scripts/mod/modpost.o
  HOSTCC  scripts/mod/sumversion.o
  HOSTLD  scripts/mod/modpost
  CC      kernel/bounds.s
  GEN     include/generated/bounds.h
  CC      arch/frv/kernel/asm-offsets.s
  GEN     include/generated/asm-offsets.h
  CALL    /home/caritas/projects/mce/kernel/linux-mce.git/scripts/checksyscalls.sh
<stdin>:1522:2: warning: #warning syscall recvmmsg not implemented
<stdin>:1526:2: warning: #warning syscall fanotify_init not implemented
<stdin>:1530:2: warning: #warning syscall fanotify_mark not implemented
<stdin>:1534:2: warning: #warning syscall prlimit64 not implemented
  CHK     include/generated/compile.h
  LD      usr/built-in.o
  CC      init/main.o
  CC      init/do_mounts.o
  CC      init/noinitramfs.o
  AS      arch/frv/kernel/head-mmu-fr451.o
  CC      arch/frv/mm/init.o
  AS      arch/frv/kernel/entry.o
  AS      arch/frv/kernel/entry-table.o
  CC      arch/frv/mm/kmap.o
  CC      arch/frv/mb93090-mb00/pci-frv.o
  AS      arch/frv/kernel/break.o
  CC      arch/frv/mb93090-mb00/pci-irq.o
  CC      arch/frv/mm/pgalloc.o
  CC      arch/frv/mb93090-mb00/pci-vdk.o
  CC      arch/frv/mb93090-mb00/pci-iomap.o
  CC      arch/frv/mm/highmem.o
  AS      arch/frv/kernel/switch_to.o
  CC      arch/frv/mb93090-mb00/pci-dma.o
  CC      arch/frv/mm/fault.o
  AS      arch/frv/kernel/kernel_thread.o
  AS      arch/frv/kernel/kernel_execve.o
  CC      arch/frv/mm/extable.o
  CC      arch/frv/kernel/process.o
  AS      arch/frv/mm/tlb-flush.o
  CC      arch/frv/mm/cache-page.o
  CC      arch/frv/kernel/traps.o
  AS      arch/frv/mm/tlb-miss.o
  CC      arch/frv/kernel/ptrace.o
  CC      arch/frv/kernel/signal.o
  CC      arch/frv/mm/mmu-context.o
  CC      arch/frv/kernel/dma.o
  CC      arch/frv/kernel/sys_frv.o
  CC      kernel/sched.o
  CC      arch/frv/kernel/time.o
  CC      kernel/fork.o
  CC      arch/frv/mm/dma-alloc.o
  CC      arch/frv/kernel/setup.o
  CC      arch/frv/kernel/frv_ksyms.o
  CC      kernel/exec_domain.o
  CC      mm/bootmem.o
  CC      arch/frv/kernel/debug-stub.o
  CC      arch/frv/mm/elf-fdpic.o
  CC      mm/filemap.o
  CC      arch/frv/kernel/irq.o
  AS      arch/frv/kernel/sleep.o
  CC      kernel/panic.o
  CC      arch/frv/kernel/uaccess.o
  CC      kernel/printk.o
  CC      mm/mempool.o
  CC      arch/frv/kernel/irq-mb93091.o
  CC      arch/frv/kernel/sysctl.o
  CC      mm/oom_kill.o
  CC      kernel/cpu.o
  CC      arch/frv/kernel/futex.o
  AS      arch/frv/kernel/head.o
  CC      kernel/exit.o
  CC      ipc/util.o
  CC      arch/frv/kernel/init_task.o
  CC      ipc/msgutil.o
  CC      mm/fadvise.o
  CC      security/commoncap.o
  CC      fs/open.o
  CC      crypto/api.o
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mm/tlb-flush.S: Assembler messages:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mm/tlb-flush.S:51: Error: operand out of range (4294967295 not between -32768 and 32767) `setlos #0xffffffff,gr4'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mm/tlb-flush.S:95: Error: operand out of range (4294967295 not between -32768 and 32767) `setlos #0xffffffff,gr4'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mm/tlb-flush.S:135: Error: operand out of range (4294967295 not between -32768 and 32767) `setlos #0xffffffff,gr4'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mm/tlb-flush.S:163: Error: operand out of range (4294967295 not between -32768 and 32767) `setlos #0xffffffff,gr4'
make[3]: *** [arch/frv/mm/tlb-flush.o] Error 1
make[3]: *** Waiting for unfinished jobs....
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mm/tlb-miss.S: Assembler messages:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mm/tlb-miss.S:178: Error: operand out of range (4294963200 not between -32768 and 32767) `setlos.p 0xfffff000,gr31'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mm/tlb-miss.S:193: Error: operand out of range (4294963200 not between -32768 and 32767) `setlos #0xfffff000,gr31'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mm/tlb-miss.S:307: Error: operand out of range (4294963200 not between -32768 and 32767) `setlos.p 0xfffff000,gr31'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mm/tlb-miss.S:322: Error: operand out of range (4294963200 not between -32768 and 32767) `setlos #0xfffff000,gr31'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mm/tlb-miss.S:433: Error: operand out of range (4294963200 not between -32768 and 32767) `setlos.p 0xfffff000,gr31'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mm/tlb-miss.S:443: Error: operand out of range (4294963200 not between -32768 and 32767) `setlos #0xfffff000,gr31'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mm/tlb-miss.S:553: Error: operand out of range (4294963200 not between -32768 and 32767) `setlos.p 0xfffff000,gr31'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mm/tlb-miss.S:563: Error: operand out of range (4294963200 not between -32768 and 32767) `setlos #0xfffff000,gr31'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/kernel/break.S: Assembler messages:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/kernel/break.S:219: Error: operand out of range (4294959104 not between -32768 and 32767) `setlos #0xffffe000,gr3'
make[3]: *** [arch/frv/mm/tlb-miss.o] Error 1
make[3]: *** [arch/frv/kernel/break.o] Error 1
make[3]: *** Waiting for unfinished jobs....
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/kernel/head.S: Assembler messages:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/kernel/head.S:52: Error: operand out of range (0xffffffff31ff not between 0 and 0xffff) `sethi.p %hi(~(0x80000000|0x40000000|0x08000000|0x0...'
  CC      ipc/shm.o
  CC      crypto/cipher.o
  LDS     arch/frv/kernel/vmlinux.lds
  CC      mm/maccess.o
  CC      ipc/sem.o
make[3]: *** [arch/frv/kernel/head.o] Error 1
  CC      fs/read_write.o
  CC      ipc/msg.o
  CC      fs/file_table.o
  CC      security/min_addr.o
  CC      mm/page_alloc.o
  CC      mm/page-writeback.o
  CC      mm/readahead.o
  CC      block/elevator.o
  UPD     include/generated/compile.h
  CC      block/blk-core.o
  CC      block/blk-tag.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mm/init.c:21:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      block/blk-sysfs.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/mempolicy.h:70,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/kernel/fork.c:21:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/bio.h:23,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/block/blk-tag.c:6:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'

/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mm/pgalloc.c:15:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mm/cache-page.c:13:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/kernel/sched.c:34:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/kernel/process.c:28:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/mempool.c:15:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mm/highmem.c:11:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/internal.h:19,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/cipher.c:21:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      block/blk-barrier.o
  CC      kernel/itimer.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/readahead.c:15:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/fadvise.c:14:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  TIMEC   kernel/timeconst.h
  CC      mm/swap.o
  CC      crypto/compress.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/filemap.c:23:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/internal.h:19,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/api.c:27:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/mempolicy.h:70,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/shmem_fs.h:5,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/ipc/shm.c:31:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/page-writeback.c:21:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      mm/truncate.o
  CC      mm/vmscan.o
  CC      fs/super.o
  LD      sound/built-in.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/security/commoncap.c:19:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/block/elevator.c:27:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/bio.h:23,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/block/blk-core.c:17:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      crypto/algapi.o
  CC      block/blk-settings.o
  CC      block/blk-ioc.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/page_alloc.c:21:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/bio.h:23,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/block/blk-sysfs.c:7:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  LD      firmware/built-in.o
  CC      kernel/softirq.o
  CC      block/blk-map.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/bio.h:23,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/block/blk-barrier.c:6:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/mempolicy.h:70,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/oom_kill.c:32:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/vmscan.c:19:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mb93090-mb00/pci-frv.c: In function 'pcibios_assign_resources':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mb93090-mb00/pci-frv.c:176:24: warning: ignoring return value of 'pci_assign_resource', declared with attribute warn_unused_result
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mb93090-mb00/pci-frv.c:184:24: warning: ignoring return value of 'pci_assign_resource', declared with attribute warn_unused_result
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/open.c:25:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      lib/bcd.o
  CC      net/socket.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mb93090-mb00/pci-dma.c:16:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      block/blk-exec.o
  CC      block/blk-merge.o
  CC      fs/char_dev.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/truncate.c:16:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/read_write.c:17:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/swap.c:21:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      kernel/resource.o
  CC      crypto/scatterwalk.o
make[2]: *** [arch/frv/mm] Error 2
make[2]: *** Waiting for unfinished jobs....
  CC      crypto/proc.o
  CC      kernel/sysctl.o
  CC      fs/stat.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/mempolicy.h:70,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/kernel/exit.c:31:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      crypto/ablkcipher.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/nfs_fs.h:41,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/init/do_mounts.c:20:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      crypto/blkcipher.o
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      init/version.o
  CC      mm/shmem.o
  LD      drivers/auxdisplay/built-in.o
  LD      net/802/built-in.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/bio.h:23,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/block/blk-ioc.c:7:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      ipc/ipcns_notifier.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/internal.h:19,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/compress.c:18:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      ipc/syscall.o
  CC      kernel/sysctl_binary.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/bio.h:23,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/block/blk-map.c:6:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      crypto/ahash.o
  CC      mm/prio_tree.o
  CC      kernel/capability.o
  CC      net/core/sock.o
  CC      block/blk-softirq.o
  CC      mm/util.o
  CC      drivers/base/core.o
  CC      lib/div64.o
  LD      arch/frv/mb93090-mb00/built-in.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/bio.h:23,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/block/blk-settings.c:7:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      lib/sort.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/super.c:26:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':  CC      crypto/shash.o

/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/kernel/setup.c:27:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/exec.o
  CC      ipc/ipc_sysctl.o
  CC      ipc/mqueue.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/internal.h:19,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/proc.c:23:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      block/blk-timeout.o
  CC      block/blk-iopoll.o
  CC      block/blk-lib.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/internal.h:19,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/algapi.c:23:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/crypto/scatterwalk.h:22,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/scatterwalk.c:17:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      block/ioctl.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/mempolicy.h:70,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/init/main.c:50:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      mm/mmzone.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/bio.h:23,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/block/blk-exec.c:6:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/bio.h:23,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/block/blk-merge.c:6:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      mm/vmstat.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/stat.c:16:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      kernel/ptrace.o
  CC      crypto/algboss.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/crypto/scatterwalk.h:22,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/blkcipher.c:18:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      ipc/mq_sysctl.o
  CC      crypto/testmgr.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/shmem.c:27:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      block/genhd.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/bio.h:23,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/block/blk-softirq.c:7:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      block/scsi_ioctl.o
  CC      block/bsg.o
  CC      mm/backing-dev.o
  CC      mm/page_isolation.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/nfs_fs.h:41,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/kernel/sysctl.c:50:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/bio.h:23,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/block/blk-lib.c:6:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      crypto/crypto_wq.o
  CC      lib/parser.o
  CC      fs/pipe.o
  CC      kernel/timer.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/crypto/scatterwalk.h:22,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/ahash.c:17:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      drivers/base/sys.o
  CC      block/noop-iosched.o
  CC      block/deadline-iosched.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/crypto/scatterwalk.h:22,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/ablkcipher.c:27:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      block/cfq-iosched.o
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      mm/mm_init.o
  CC      kernel/user.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/kernel/ptrace.c:15:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/crypto/scatterwalk.h:22,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/shash.c:13:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/internal.h:19,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/testmgr.c:24:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      kernel/signal.o
  CC      mm/mmu_context.o
  CC      mm/fremap.o
  CC      lib/halfmd4.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/exec.c:34:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/ipc/mqueue.c:18:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/net/socket.c:80:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      drivers/base/bus.o
  CC      fs/namei.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/bio.h:23,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/block/blk-iopoll.c:8:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/block/ioctl.c:2:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/backing-dev.c:7:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/block/blk-timeout.c:6:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/block/genhd.c:10:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/block/scsi_ioctl.c:23:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/block/bsg.c:15:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/fcntl.o
  CC      mm/highmem.o
  CC      mm/madvise.o
  CC      kernel/sys.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/pipe.c:18:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      crypto/aead.o
  CC      mm/memory.o
  CC      net/core/request_sock.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/block/cfq-iosched.c:11:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/ioctl.o
  CC      fs/readdir.o
  CC      lib/debug_locks.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/block/noop-iosched.c:4:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      crypto/chainiv.o
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/block/deadline-iosched.c:8:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/internal.h:19,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/algboss.c:25:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  LD      security/built-in.o
  CC      mm/mincore.o
  CC      lib/random32.o
  CC      crypto/eseqiv.o
  CC      fs/select.o
  CC      mm/mlock.o
  CC      fs/fifo.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/net/core/sock.c:112:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/fremap.c:13:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/namei.c:22:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/dcache.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/bio.h:23,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/highmem.c:22:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
make[2]: *** [arch/frv/kernel] Error 2
  CC      lib/bust_spinlocks.o
  CC      fs/inode.o
  CC      kernel/kmod.o
  CC      crypto/pcompress.o
  CC      drivers/base/dd.o
  CC      lib/hexdump.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/memory.c:46:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      mm/mmap.o
  CC      kernel/workqueue.o
  CC      kernel/pid.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/mincore.c:10:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      crypto/md5.o
  CC      kernel/rcupdate.o
  CC      mm/mprotect.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/madvise.c:9:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      mm/mremap.o
  CC      kernel/extable.o
  CC      crypto/cbc.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/mlock.c:13:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/crypto/scatterwalk.h:22,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/eseqiv.c:20:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      crypto/des_generic.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/internal.h:19,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/aead.c:25:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/buffer_head.h:13,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/ioctl.c:17:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/mmap.c:14:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  LD      init/mounts.o
  LD      init/built-in.o
  CC      kernel/params.o
  CC      lib/kasprintf.o
  CC      fs/attr.o
  CC      kernel/posix-timers.o
  CC      mm/msync.o
  CC      fs/bad_inode.o
  CC      lib/bitmap.o
  CC      kernel/kthread.o
  CC      crypto/aes_generic.o
  CC      drivers/base/driver.o
  CC      kernel/wait.o
  CC      mm/rmap.o
  CC      crypto/rng.o
  CC      mm/vmalloc.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/inode.c:20:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      net/core/skbuff.o
  CC      kernel/kfifo.o
  CC      lib/scatterlist.o
  CC      crypto/krng.o
  CC      drivers/base/class.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/internal.h:19,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/pcompress.c:31:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      mm/pagewalk.o
  LD      drivers/block/built-in.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/mempolicy.h:70,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/kernel/workqueue.c:31:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/file.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/mprotect.c:16:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/ksm.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/mremap.c:13:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      lib/string_helpers.o
  CC      mm/init-mm.o
  CC      lib/gcd.o
  CC      fs/filesystems.o
  LD      drivers/cdrom/built-in.o
  CC      mm/bounce.o
  CC      fs/namespace.o
  CC      mm/page_io.o
  CC      crypto/ansi_cprng.o
  CC      drivers/char/mem.o
  CC      kernel/sys_ni.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/pagewalk.c:2:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/rmap.c:47:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      lib/lcm.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/lib/scatterlist.c:12:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      kernel/posix-cpu-timers.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/vmalloc.c:14:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/seq_file.o
  CC      drivers/base/platform.o
  CC      drivers/base/cpu.o
  LD      drivers/clocksource/built-in.o
  CC      kernel/mutex.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/bio.h:23,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/bounce.c:10:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      mm/swap_state.o
  CC      kernel/hrtimer.o
  CC      mm/swapfile.o
  CC      net/core/iovec.o
  CC      mm/thrash.o
  CC      net/ethernet/eth.o
  LD      drivers/crypto/built-in.o
  CC      lib/list_sort.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/internal.h:19,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/crypto/ansi_cprng.c:23:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      kernel/rwsem.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/net/core/kmap_skb.h:1,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/net/core/skbuff.c:71:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      drivers/base/firmware.o
  LD      drivers/firmware/built-in.o
  CC      kernel/nsproxy.o
  CC      lib/uuid.o
  CC      lib/iomap_copy.o
  CC      fs/xattr.o
  LD      drivers/gpio/built-in.o
  CC      drivers/base/init.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/page_io.c:16:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      lib/devres.o
  CC      fs/libfs.o
  CC      mm/dmapool.o
  CC      mm/slub.o
  CC      mm/percpu_up.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/swap_state.c:16:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      mm/quicklist.o
  LD      drivers/gpu/drm/i2c/built-in.o
  LD      crypto/crypto.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/drivers/char/mem.c:23:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  LD      crypto/crypto_algapi.o
  CC      lib/find_last_bit.o
  CC      fs/fs-writeback.o
  LD      crypto/crypto_blkcipher.o
  LD      drivers/gpu/drm/built-in.o
  CC      kernel/srcu.o
  LD      crypto/crypto_hash.o
  CC      lib/hweight.o
  LD      crypto/cryptomgr.o
  CC      kernel/semaphore.o
  CC      drivers/gpu/vga/vgaarb.o
  CC      kernel/notifier.o
  CC      kernel/ksysfs.o
  CC      lib/bitrev.o
  CC      drivers/base/map.o
  CC      kernel/pm_qos_params.o
  CC      drivers/hwmon/hwmon.o
  CC      drivers/base/devres.o
  CC      drivers/base/attribute_container.o
  CC      drivers/base/transport_class.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/swapfile.c:15:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      drivers/char/random.o
  LD      ipc/built-in.o
  HOSTCC  lib/gen_crc32table
  CC      lib/syscall.o
  LD      drivers/i2c/algos/built-in.o
  CC      fs/pnode.o
  CC      drivers/base/dma-mapping.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/mempolicy.h:70,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/mm/slub.c:23:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/drop_caches.o
  LD      drivers/base/power/built-in.o
  CC      kernel/sched_clock.o
  CC      lib/nlattr.o
  LD      drivers/i2c/busses/built-in.o
  CC      fs/splice.o
  CC      fs/sync.o
  CC      kernel/cred.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/libfs.c:7:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      net/ipv4/route.o
  CC      lib/argv_split.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/fs-writeback.c:26:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      kernel/async.o
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      drivers/char/tty_io.o
  LD      drivers/i2c/muxes/built-in.o
  CC      kernel/range.o
  CC      kernel/groups.o
  CC      lib/cmdline.o
  LD      drivers/i2c/built-in.o
  CC      net/core/datagram.o
  CC      fs/utimes.o
  CC      lib/ctype.o
  CC      net/netlink/af_netlink.o
  LD      net/ethernet/built-in.o
  LD      drivers/idle/built-in.o
  CC      net/netlink/genetlink.o
  LD      drivers/ieee1394/built-in.o
  LD      drivers/ieee802154/built-in.o
  CC      fs/stack.o
  CC      net/packet/af_packet.o
  CC      net/sched/sch_generic.o
  CC      kernel/irq/handle.o
  CC      lib/dec_and_lock.o
  LD      drivers/lguest/built-in.o
  LD      drivers/hwmon/built-in.o
  LD      drivers/macintosh/built-in.o
  CC      kernel/time/timekeeping.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/splice.c:22:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':  CC      kernel/futex.o

/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/fs_struct.o
  LD      drivers/mfd/built-in.o
  CC      lib/decompress.o
  CC      lib/dump_stack.o
  CC      lib/extable.o
  CC      drivers/net/mii.o
  CC      lib/find_next_bit.o
  CC      kernel/irq/manage.o
  CC      drivers/pci/access.o
  LD      drivers/misc/cb710/built-in.o
  LD      block/built-in.o
  CC      kernel/rtmutex.o
  CC      kernel/irq/spurious.o
  LD      drivers/media/IR/keymaps/built-in.o
  LD      drivers/platform/built-in.o
  CC      lib/flex_array.o
  CC      lib/idr.o
  CC      fs/statfs.o
  CC      lib/int_sqrt.o
  CC      net/ipv4/inetpeer.o
  CC      lib/ioremap.o
  LD      drivers/media/IR/built-in.o
  LD      drivers/misc/eeprom/built-in.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/sync.c:14:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      lib/irq_regs.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/net/core/datagram.c:49:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      drivers/char/n_tty.o
  CC      lib/is_single_threaded.o
  CC      drivers/serial/serial_core.o
  LD      drivers/misc/built-in.o
  CC      kernel/up.o
  CC      lib/klist.o
  CC      lib/kobject.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/kernel/futex.c:55:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/kernel/async.c: In function 'async_run_entry_fn':
/home/caritas/projects/mce/kernel/linux-mce.git/kernel/async.c:122:10: warning: 'calltime.tv64' may be used uninitialized in this function
  CC      fs/buffer.o
  CC      drivers/net/ne2k-pci.o
  CC      fs/bio.o
  LD      drivers/media/common/tuners/built-in.o
/home/caritas/projects/mce/kernel/linux-mce.git/kernel/async.c: In function 'async_synchronize_cookie_domain':
/home/caritas/projects/mce/kernel/linux-mce.git/kernel/async.c:270:10: warning: 'starttime.tv64' may be used uninitialized in this function
  CC      lib/kref.o
  LD      drivers/base/built-in.o
  CC      drivers/char/tty_ioctl.o
  LD      drivers/media/common/built-in.o
  CC      kernel/uid16.o
  CC      drivers/usb/host/pci-quirks.o
  LD      crypto/built-in.o
  CC      lib/plist.o
  CC      drivers/video/fb_notify.o
  CC      lib/prio_heap.o
  CC      kernel/irq/resend.o
  CC      kernel/kallsyms.o
  LD      drivers/video/backlight/built-in.o
  CC      fs/block_dev.o
  CC      drivers/net/8390.o
  CC      kernel/irq/chip.o
  CC      lib/prio_tree.o
  CC      lib/proportions.o
  CC      kernel/rcutree.o
  LD      drivers/video/display/built-in.o
  LD      drivers/media/video/davinci/built-in.o
  CC      lib/radix-tree.o
  CC      kernel/utsname_sysctl.o
  CC      kernel/elfcore.o
  CC      lib/ratelimit.o
  LD      drivers/media/video/built-in.o
  CC      fs/direct-io.o
  CC      net/ipv4/protocol.o
  CC      fs/mpage.o
  CC      net/sunrpc/clnt.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/bio.h:23,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/bio.c:20:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/buffer.c:28:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      kernel/perf_event.o
  CC      net/sunrpc/xprt.o
  CC      fs/ioprio.o
  LD      drivers/media/built-in.o
  CC      kernel/irq/devres.o
  CC      lib/rbtree.o
  LD      drivers/video/omap2/displays/built-in.o
  CC      lib/reciprocal_div.o
  CC      lib/rwsem-spinlock.o
  CC      drivers/serial/8250.o
  CC      net/sunrpc/socklib.o
  LD      drivers/video/omap2/dss/built-in.o
  CC      drivers/net/Space.o
  CC      lib/sha1.o
  CC      kernel/irq/proc.o
  CC      kernel/time.o
  CC      net/core/stream.o
  CC      drivers/pci/bus.o
  CC      lib/show_mem.o
  CC      lib/string.o
  CC      fs/devpts/inode.o
  LD      drivers/video/omap2/omapfb/built-in.o
  CC      drivers/char/tty_ldisc.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/direct-io.c:28:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      lib/vsprintf.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/bio.h:23,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/mpage.c:20:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/block_dev.c:16:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
  LD      drivers/video/omap2/built-in.o
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      net/core/scm.o
  CC      drivers/pci/probe.o
  CC      net/core/gen_stats.o
  CC      drivers/serial/8250_pci.o
  CC      net/core/gen_estimator.o
  LD      drivers/video/built-in.o
  CC      fs/lockd/clntlock.o
  CC      net/ipv4/ip_input.o
  GEN     lib/crc32table.h
  CC      net/sched/sch_mq.o
  CC      kernel/time/ntp.o
  CC      drivers/net/loopback.o
  CC      lib/crc32.o
  CC      net/core/net_namespace.o
  CC      net/ipv4/ip_fragment.o
  LD      drivers/net/wireless/built-in.o
  CC      drivers/char/tty_buffer.o
  CC      net/ipv4/ip_forward.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/ioprio.c:25:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      kernel/time/clocksource.o
  CC      drivers/serial/8250_early.o
  CC      net/unix/af_unix.o
  LD      drivers/gpu/vga/built-in.o
  CC      fs/nfs/client.o
  LD      drivers/gpu/built-in.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/nfs_fs.h:41,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/lockd/clntlock.c:13:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      net/unix/garbage.o
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      drivers/char/tty_port.o
  CC      fs/nfs/dir.o
  CC      drivers/pci/remove.o
  CC      fs/nfs/file.o
  CC      fs/nfs/getroot.o
  CC      kernel/time/jiffies.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/net/sunrpc/socklib.c:14:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/nfs/inode.o
  CC      fs/nfs/super.o
  LD      kernel/irq/built-in.o
  CC      fs/nfs/nfs2xdr.o
  CC      fs/nfs/direct.o
  CC      drivers/pci/pci.o
  LD      fs/nfs_common/built-in.o
  CC      fs/lockd/clntproc.o
  LD      fs/devpts/devpts.o
  LD      fs/devpts/built-in.o
  CC      net/core/sysctl_net_core.o
  CC      fs/partitions/check.o
  CC      kernel/time/timer_list.o
  LD      drivers/usb/host/built-in.o
  CC      fs/notify/fsnotify.o
  LD      drivers/usb/built-in.o
  CC      net/core/dev.o
  CC      drivers/pci/pci-driver.o
  CC      drivers/pci/search.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/nfs/nfs2xdr.c:18:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  LD      fs/quota/built-in.o
  LD      lib/built-in.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/nfs_fs.h:41,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/nfs/file.c:24:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
  LD      net/sched/built-in.o
  CC      net/core/ethtool.o
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/lockd/host.o
  CC      kernel/time/timecompare.o
  CC      net/core/dev_addr_lists.o
  CC      fs/ramfs/inode.o
  CC      drivers/pci/pci-sysfs.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/nfs_fs.h:41,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/lockd/clntproc.c:15:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/ramfs/file-mmu.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/nfs_fs.h:41,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/nfs/dir.c:29:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/sysfs/inode.o
  LD      net/wireless/built-in.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/nfs_fs.h:41,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/nfs/getroot.c:24:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      kernel/time/timeconv.o
  CC      fs/eventpoll.o
  CC      fs/sysfs/file.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/nfs/direct.c:45:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/nfs_fs.h:41,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/nfs/inode.c:29:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/anon_inodes.o
  CC      net/xfrm/xfrm_policy.o
  CC      net/core/dst.o
  CC      drivers/char/tty_mutex.o
  CC      fs/nfs/pagelist.o
  CC      fs/lockd/svc.o
  CC      fs/proc/mmu.o
  CC      net/ipv4/ip_options.o
  CC      net/core/netevent.o
  CC      net/sunrpc/xprtsock.o
  CC      fs/nfs/proc.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/ramfs/inode.c:28:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      net/sysctl_net.o
  CC      net/sunrpc/sched.o
  CC      net/core/neighbour.o
  CC      drivers/char/pty.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/nfs_fs.h:41,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/nfs/client.c:28:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      net/core/rtnetlink.o
  LD      drivers/net/built-in.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/sysfs/inode.c:15:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      net/ipv4/ip_output.o
  LD      net/netlink/built-in.o
  CC      net/ipv4/ip_sockglue.o
  CC      net/core/utils.o
  CC      net/xfrm/xfrm_state.o
  CC      net/xfrm/xfrm_hash.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blkdev.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/blktrace_api.h:6,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/partitions/check.c:23:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/partitions/msdos.o
  CC      net/xfrm/xfrm_input.o
  CC      net/ipv4/inet_hashtables.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/nfs_fs.h:41,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/nfs/super.c:38:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      drivers/char/misc.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/proc/mmu.c:13:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/mempolicy.h:70,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/drivers/pci/pci-driver.c:15:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/net/sunrpc/xprtsock.c:25:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  LD      net/packet/built-in.o
  CC      fs/signalfd.o
  CC      fs/proc/task_mmu.o
  CC      drivers/char/hw_random/core.o
  LD      fs/ramfs/ramfs.o
  CC      net/ipv4/inet_timewait_sock.o
  CC      net/sunrpc/auth.o
  LD      fs/ramfs/built-in.o
  CC      net/core/link_watch.o
  CC      fs/timerfd.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/net/ipv4/ip_output.c:53:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/sysfs/dir.o
  CC      drivers/pci/rom.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/nfs/proc.c:37:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  LD      kernel/time/built-in.o
  LD      mm/built-in.o
  CC      fs/notify/notification.o
  CC      net/unix/sysctl_net_unix.o
  CC      net/xfrm/xfrm_output.o
  CC      fs/notify/group.o
  CC      net/ipv4/inet_connection_sock.o
  CC      drivers/pci/setup-res.o
  CC      drivers/pci/irq.o
  CC      fs/notify/inode_mark.o
  CC      fs/lockd/svclock.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/proc/task_mmu.c:5:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/partitions/check.h:1,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/partitions/msdos.c:23:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      drivers/pci/vpd.o
  CC      fs/eventfd.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/net/core/dev.c:108:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/aio.o
  CC      net/core/filter.o
  CC      fs/proc/inode.o
  CC      drivers/pci/proc.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/nfs_page.h:14,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/nfs/pagelist.c:18:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/locks.o
  CC      fs/lockd/svcshare.o
  CC      drivers/pci/slot.o
  CC      net/ipv4/tcp.o
  CC      net/xfrm/xfrm_algo.o
  LD      drivers/char/hw_random/rng-core.o
  CC      net/core/flow.o
  CC      net/xfrm/xfrm_sysctl.o
  LD      drivers/char/hw_random/built-in.o
  CC      drivers/pci/quirks.o
  CC      fs/lockd/svcproc.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/aio.c:32:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/sysfs/symlink.o
  CC      fs/notify/mark.o
  CC      net/ipv4/tcp_input.o
  CC      fs/binfmt_script.o
  CC      fs/binfmt_elf_fdpic.o
  CC      fs/notify/vfsmount_mark.o
  CC      net/core/net-sysfs.o
  CC      fs/sysfs/mount.o
  CC      fs/nfs/read.o
  CC      net/ipv4/tcp_output.o
  CC      fs/proc/root.o
  CC      fs/nfs/symlink.o
  CC      fs/lockd/svcsubs.o
  CC      net/sunrpc/auth_null.o
  CC      fs/lockd/mon.o
  CC      fs/nfs/unlink.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/net/ipv4/tcp.c:262:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/proc/base.o
  CC      net/ipv4/tcp_timer.o
  CC      net/ipv4/tcp_ipv4.o
  CC      net/ipv4/tcp_minisocks.o
  LD      drivers/char/built-in.o
  CC      net/sunrpc/auth_unix.o
  CC      net/ipv4/tcp_cong.o
  CC      fs/nfs/write.o
  CC      fs/proc/generic.o
  CC      fs/proc/array.o
  CC      net/sunrpc/auth_generic.o
  CC      fs/proc/proc_tty.o
  CC      fs/nfs/namespace.o
  LD      drivers/serial/built-in.o
  LD      fs/partitions/built-in.o
  CC      fs/sysfs/bin.o
  LD      net/unix/unix.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/sysfs/mount.c:17:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/sysfs/group.o
  CC      fs/notify/dnotify/dnotify.o
  LD      net/unix/built-in.o
  LD      fs/notify/fanotify/built-in.o
  CC      net/sunrpc/svc.o
  CC      fs/notify/inotify/inotify_fsnotify.o
  CC      fs/proc/cmdline.o
  CC      fs/proc/cpuinfo.o
  CC      fs/notify/inotify/inotify_user.o
  CC      net/ipv4/datagram.o
  AR      lib/lib.a
  CC      net/ipv4/raw.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/binfmt_elf_fdpic.c:27:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/proc/devices.o
  CC      fs/proc/interrupts.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/nfs/read.c:17:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/lockd/xdr.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/nfs/write.c:12:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/proc/array.c:69:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      net/ipv4/udp.o
  CC      fs/lockd/grace.o
  CC      fs/nfs/mount_clnt.o
  CC      fs/proc/loadavg.o
  CC      net/ipv4/udplite.o
  CC      net/ipv4/arp.o
  CC      net/ipv4/icmp.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/nfs_fs.h:41,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/nfs/symlink.c:18:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      net/ipv4/devinet.o
  CC      fs/proc/meminfo.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/nfs_fs.h:41,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/nfs/namespace.c:14:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/proc/stat.o
  CC      fs/nfs/dns_resolve.o
  CC      fs/nfs/cache_lib.o
  CC      net/ipv4/af_inet.o
  CC      net/sunrpc/svcsock.o
  CC      fs/proc/uptime.o
  CC      net/ipv4/igmp.o
  CC      net/sunrpc/svcauth.o
  LD      fs/notify/dnotify/built-in.o
  CC      net/sunrpc/svcauth_unix.o
  CC      net/ipv4/fib_frontend.o
  CC      fs/proc/version.o
  CC      fs/nfs/nfsroot.o
  CC      fs/nfs/sysctl.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/nfs_fs.h:41,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/nfs/unlink.c:13:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      fs/proc/softirqs.o
  CC      fs/proc/proc_sysctl.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/net/ipv4/udp.c:84:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  LD      fs/sysfs/built-in.o
  CC      fs/proc/proc_net.o
  CC      net/sunrpc/addr.o
  CC      net/sunrpc/rpcb_clnt.o
  CC      fs/proc/kmsg.o
  CC      net/sunrpc/timer.o
  CC      net/ipv4/fib_semantics.o
  CC      net/ipv4/inet_fragment.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/nfs_fs.h:41,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/nfs/mount_clnt.c:16:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      net/ipv4/sysctl_net_ipv4.o
  CC      fs/proc/page.o
  CC      net/sunrpc/xdr.o
  CC      net/ipv4/fib_hash.o
  CC      net/ipv4/proc.o
  CC      net/sunrpc/sunrpc_syms.o
  CC      net/sunrpc/cache.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/nfs_fs.h:41,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/nfs/sysctl.c:14:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      net/ipv4/xfrm4_mode_beet.o
  CC      net/sunrpc/rpc_pipe.o
  CC      net/ipv4/inet_lro.o
  CC      net/ipv4/xfrm4_mode_transport.o
  CC      net/sunrpc/svc_xprt.o
  CC      net/sunrpc/stats.o
  LD      drivers/pci/built-in.o
  CC      net/sunrpc/sysctl.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/ksm.h:12,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/proc/page.c:5:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  LD      drivers/built-in.o
  CC      net/ipv4/xfrm4_mode_tunnel.o
  CC      net/ipv4/ipconfig.o
  CC      net/ipv4/inet_diag.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/net/sunrpc/xdr.c:14:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      net/ipv4/tcp_diag.o
  CC      net/ipv4/tcp_cubic.o
  CC      net/ipv4/xfrm4_policy.o
  CC      net/ipv4/xfrm4_state.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/net/sunrpc/cache.c:30:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  CC      net/sunrpc/auth_gss/auth_gss.o
  CC      net/ipv4/xfrm4_input.o
  CC      net/sunrpc/auth_gss/gss_generic_token.o
  CC      net/ipv4/xfrm4_output.o
  CC      net/sunrpc/auth_gss/gss_mech_switch.o
  LD      fs/lockd/lockd.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/net/sunrpc/rpc_pipe.c:14:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  LD      fs/lockd/built-in.o
  CC      net/sunrpc/auth_gss/svcauth_gss.o
  CC      net/sunrpc/auth_gss/gss_krb5_mech.o
  CC      net/sunrpc/auth_gss/gss_krb5_seal.o
  CC      net/sunrpc/auth_gss/gss_krb5_unseal.o
  CC      net/sunrpc/auth_gss/gss_krb5_seqnum.o
  CC      net/sunrpc/auth_gss/gss_krb5_wrap.o
  CC      net/sunrpc/auth_gss/gss_krb5_crypto.o
  LD      fs/notify/inotify/built-in.o
  LD      fs/notify/built-in.o
  CC      net/sunrpc/auth_gss/gss_krb5_keys.o
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/nfs_fs.h:41,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/fs/nfs/nfsroot.c:79:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/nfs_fs.h:41,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/net/ipv4/ipconfig.c:55:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/net/sunrpc/auth_gss/gss_krb5_wrap.c:35:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/net/sunrpc/auth_gss/gss_krb5_crypto.c:42:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/net/sunrpc/auth_gss/auth_gss.c:44:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
In file included from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/highmem.h:44:0,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/include/linux/pagemap.h:10,
                 from /home/caritas/projects/mce/kernel/linux-mce.git/net/sunrpc/auth_gss/svcauth_gss.c:43:
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kmap_atomic':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:134:2: warning: case value '72' not in enumerated type 'enum km_type'
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h: In function 'kunmap_atomic_notypecheck':
/home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/include/asm/highmem.h:168:2: warning: case value '72' not in enumerated type 'enum km_type'
  LD      fs/nfs/nfs.o
  LD      fs/nfs/built-in.o
  LD      fs/proc/proc.o
  LD      fs/proc/built-in.o
  LD      fs/built-in.o
  LD      net/sunrpc/sunrpc.o
  LD      net/xfrm/built-in.o
  LD      kernel/built-in.o
frv-linux-ld: Warning: size of symbol `sys_syslog' changed from 16 in kernel/printk.o to 8 in kernel/sys_ni.o
frv-linux-ld: Warning: size of symbol `sys_set_robust_list' changed from 8 in kernel/sys_ni.o to 48 in kernel/futex.o
frv-linux-ld: Warning: size of symbol `sys_get_robust_list' changed from 8 in kernel/sys_ni.o to 296 in kernel/futex.o
frv-linux-ld: Warning: size of symbol `sys_futex' changed from 8 in kernel/sys_ni.o to 440 in kernel/futex.o
frv-linux-ld: Warning: size of symbol `sys_chown16' changed from 8 in kernel/sys_ni.o to 56 in kernel/uid16.o
frv-linux-ld: Warning: size of symbol `sys_lchown16' changed from 8 in kernel/sys_ni.o to 56 in kernel/uid16.o
frv-linux-ld: Warning: size of symbol `sys_fchown16' changed from 8 in kernel/sys_ni.o to 56 in kernel/uid16.o
frv-linux-ld: Warning: size of symbol `sys_setregid16' changed from 8 in kernel/sys_ni.o to 56 in kernel/uid16.o
frv-linux-ld: Warning: size of symbol `sys_setgid16' changed from 8 in kernel/sys_ni.o to 40 in kernel/uid16.o
frv-linux-ld: Warning: size of symbol `sys_setreuid16' changed from 8 in kernel/sys_ni.o to 56 in kernel/uid16.o
frv-linux-ld: Warning: size of symbol `sys_setuid16' changed from 8 in kernel/sys_ni.o to 40 in kernel/uid16.o
frv-linux-ld: Warning: size of symbol `sys_setresuid16' changed from 8 in kernel/sys_ni.o to 124 in kernel/uid16.o
frv-linux-ld: Warning: size of symbol `sys_getresuid16' changed from 8 in kernel/sys_ni.o to 284 in kernel/uid16.o
frv-linux-ld: Warning: size of symbol `sys_setresgid16' changed from 8 in kernel/sys_ni.o to 124 in kernel/uid16.o
frv-linux-ld: Warning: size of symbol `sys_getresgid16' changed from 8 in kernel/sys_ni.o to 284 in kernel/uid16.o
frv-linux-ld: Warning: size of symbol `sys_setfsuid16' changed from 8 in kernel/sys_ni.o to 40 in kernel/uid16.o
frv-linux-ld: Warning: size of symbol `sys_setfsgid16' changed from 8 in kernel/sys_ni.o to 40 in kernel/uid16.o
frv-linux-ld: Warning: size of symbol `sys_getgroups16' changed from 8 in kernel/sys_ni.o to 252 in kernel/uid16.o
frv-linux-ld: Warning: size of symbol `sys_setgroups16' changed from 8 in kernel/sys_ni.o to 440 in kernel/uid16.o
frv-linux-ld: Warning: size of symbol `sys_getuid16' changed from 8 in kernel/sys_ni.o to 40 in kernel/uid16.o
frv-linux-ld: Warning: size of symbol `sys_geteuid16' changed from 8 in kernel/sys_ni.o to 40 in kernel/uid16.o
frv-linux-ld: Warning: size of symbol `sys_getgid16' changed from 8 in kernel/sys_ni.o to 40 in kernel/uid16.o
frv-linux-ld: Warning: size of symbol `sys_getegid16' changed from 8 in kernel/sys_ni.o to 40 in kernel/uid16.o
frv-linux-ld: Warning: size of symbol `early_irq_init' changed from 8 in kernel/softirq.o to 100 in kernel/irq/built-in.o
frv-linux-ld: Warning: size of symbol `sys_perf_event_open' changed from 8 in kernel/sys_ni.o to 1548 in kernel/perf_event.o
  LD      net/sunrpc/auth_gss/auth_rpcgss.o
  LD      net/sunrpc/auth_gss/rpcsec_gss_krb5.o
  LD      net/sunrpc/auth_gss/built-in.o
  LD      net/sunrpc/built-in.o
  LD      net/core/built-in.o
  LD      net/ipv4/built-in.o
  LD      net/built-in.o
make[1]: *** [sub-make] Error 2
make: *** [all] Error 2

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH -tip -v4] irq_work: generic hard-irq context callbacks
  2010-09-23 20:12         ` David Howells
  2010-09-26  0:40           ` Huang Ying
@ 2010-09-26  7:32           ` David Howells
  1 sibling, 0 replies; 18+ messages in thread
From: David Howells @ 2010-09-26  7:32 UTC (permalink / raw)
  To: Huang Ying
  Cc: dhowells, Peter Zijlstra, Martin Schwidefsky, Ingo Molnar,
	H. Peter Anvin, paulus, linux-kernel, Andi Kleen, Russell King,
	Kyle McMartin, davem, Linux-Arch, Matt Fleming

Huang Ying <ying.huang@intel.com> wrote:

> /home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mm/tlb-flush.S: Assembler messages:
> /home/caritas/projects/mce/kernel/linux-mce.git/arch/frv/mm/tlb-flush.S:51: Error: operand out of range (4294967295 not between -32768 and 32767) `setlos #0xffffffff,gr4'

Hmmm...  It's a newer binutils by the looks of it.  They seem to have made it
more stroppy about unsigned constants for signed parameters:-(

I'll get back to you on it.

David

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH -tip -v4] irq_work: generic hard-irq context callbacks
  2010-09-15 15:10 Andi Kleen
  2010-09-15 15:41 ` Peter Zijlstra
@ 2010-09-15 19:30 ` Geert Uytterhoeven
  1 sibling, 0 replies; 18+ messages in thread
From: Geert Uytterhoeven @ 2010-09-15 19:30 UTC (permalink / raw)
  To: Andi Kleen
  Cc: Peter Zijlstra, Huang Ying, Martin Schwidefsky, Ingo Molnar,
	H. Peter Anvin, paulus, linux-kernel, dhowells, Russell King,
	Kyle McMartin, davem, Linux-Arch, Matt Fleming

On Wed, Sep 15, 2010 at 17:10, Andi Kleen <andi@firstfloor.org> wrote:
>> On Wed, 2010-09-15 at 13:29 +0800, Huang Ying wrote:
>>> I uses the cross build tool from:
>>>
>>> http://www.kernel.org/pub/tools/crosstool/
>>
>> I'm not familiar with those, I build my own gcc-4.5.1 toolchains for all
>> targets that would actually build a gcc toolchains, for those that don't
>> I simply don't care about.
>
> I don't think it's a reasonable requirement to have every contributor
> compile on all architectures. If that was a general requirement
> soon nobody would send patches anymore.
>
> Cross arch breakages happen rarely and can be usually repaired after
> the fact.

As long as "the fact" is linux-next and not Linus' tree, we can live
with that ;-)

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH -tip -v4] irq_work: generic hard-irq context callbacks
  2010-09-15 15:10 Andi Kleen
@ 2010-09-15 15:41 ` Peter Zijlstra
  2010-09-15 19:30 ` Geert Uytterhoeven
  1 sibling, 0 replies; 18+ messages in thread
From: Peter Zijlstra @ 2010-09-15 15:41 UTC (permalink / raw)
  To: Andi Kleen
  Cc: Huang Ying, Martin Schwidefsky, Ingo Molnar, H. Peter Anvin,
	paulus, linux-kernel, dhowells, Russell King, Kyle McMartin,
	davem, Linux-Arch, Matt Fleming

On Wed, 2010-09-15 at 17:10 +0200, Andi Kleen wrote:
> > On Wed, 2010-09-15 at 13:29 +0800, Huang Ying wrote:
> >
> >> I uses the cross build tool from:
> >>
> >> http://www.kernel.org/pub/tools/crosstool/
> >
> > I'm not familiar with those, I build my own gcc-4.5.1 toolchains for all
> > targets that would actually build a gcc toolchains, for those that don't
> > I simply don't care about.
> 
> I don't think it's a reasonable requirement to have every contributor
> compile on all architectures. If that was a general requirement
> soon nobody would send patches anymore.
> 
> Cross arch breakages happen rarely and can be usually repaired after
> the fact.

I think its reasonable to at least try and compile bits if you
explicitly touch these architectures like the patch under consideration
does.



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH -tip -v4] irq_work: generic hard-irq context callbacks
@ 2010-09-15 15:10 Andi Kleen
  2010-09-15 15:41 ` Peter Zijlstra
  2010-09-15 19:30 ` Geert Uytterhoeven
  0 siblings, 2 replies; 18+ messages in thread
From: Andi Kleen @ 2010-09-15 15:10 UTC (permalink / raw)
  To: Peter Zijlstra
  Cc: Huang Ying, Martin Schwidefsky, Ingo Molnar, H. Peter Anvin,
	paulus, linux-kernel, Andi Kleen, dhowells, Russell King,
	Kyle McMartin, davem, Linux-Arch, Matt Fleming

> On Wed, 2010-09-15 at 13:29 +0800, Huang Ying wrote:
>
>> I uses the cross build tool from:
>>
>> http://www.kernel.org/pub/tools/crosstool/
>
> I'm not familiar with those, I build my own gcc-4.5.1 toolchains for all
> targets that would actually build a gcc toolchains, for those that don't
> I simply don't care about.

I don't think it's a reasonable requirement to have every contributor
compile on all architectures. If that was a general requirement
soon nobody would send patches anymore.

Cross arch breakages happen rarely and can be usually repaired after
the fact.

-Andi


^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2010-09-26  7:32 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-13  6:50 [PATCH -tip -v4] irq_work: generic hard-irq context callbacks Huang Ying
2010-09-13  9:18 ` Peter Zijlstra
2010-09-13 10:32 ` Martin Schwidefsky
2010-09-13 11:36   ` Peter Zijlstra
2010-09-15  5:29     ` Huang Ying
2010-09-15  7:51       ` Martin Schwidefsky
2010-09-15  8:28       ` Peter Zijlstra
2010-09-15  8:50         ` Matt Fleming
2010-09-16  6:59           ` Huang Ying
2010-09-16  7:03             ` Paul Mundt
2010-09-16  8:57         ` Huang Ying
2010-09-17 12:37         ` David Howells
2010-09-23 20:12         ` David Howells
2010-09-26  0:40           ` Huang Ying
2010-09-26  7:32           ` David Howells
2010-09-15 15:10 Andi Kleen
2010-09-15 15:41 ` Peter Zijlstra
2010-09-15 19:30 ` Geert Uytterhoeven

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).