From 93f378883cecb9dcb2cf5b51d9d24175906659da Mon Sep 17 00:00:00 2001 From: "Luck, Tony" Date: Thu, 29 Mar 2012 13:35:22 -0700 Subject: [PATCH] Fix ia64 build errors (fallout from system.h disintegration) Fix this build error on ia64: In file included from include/linux/sched.h:92, from arch/ia64/kernel/asm-offsets.c:9: include/linux/llist.h:59:25: error: asm/cmpxchg.h: No such file or directory make[1]: *** [arch/ia64/kernel/asm-offsets.s] Error 1 Right now we don't seem to need any actual contents for the asm/cmpxchg.h to make the build work ... so leave the migration of xchg() and cmpxchg() to this new header file for a future patch. Also process.c needs (for definition of pfm_syst_info). Signed-off-by: Tony Luck Signed-off-by: Linus Torvalds --- arch/ia64/include/asm/cmpxchg.h | 1 + arch/ia64/kernel/process.c | 1 + 2 files changed, 2 insertions(+) create mode 100644 arch/ia64/include/asm/cmpxchg.h diff --git a/arch/ia64/include/asm/cmpxchg.h b/arch/ia64/include/asm/cmpxchg.h new file mode 100644 index 0000000..507c66c --- /dev/null +++ b/arch/ia64/include/asm/cmpxchg.h @@ -0,0 +1 @@ +/* Future home of xchg() and cmpxchg() */ diff --git a/arch/ia64/kernel/process.c b/arch/ia64/kernel/process.c index 9dc52b6..ce74e14 100644 --- a/arch/ia64/kernel/process.c +++ b/arch/ia64/kernel/process.c @@ -38,6 +38,7 @@ #include #include #include +#include #include #include #include -- 2.7.4