summaryrefslogtreecommitdiffstats
path: root/crash-driver.patch
diff options
context:
space:
mode:
authorJosh Boyer <jwboyer@fedoraproject.org>2013-11-26 13:53:14 -0500
committerJosh Boyer <jwboyer@fedoraproject.org>2013-11-26 13:53:18 -0500
commit97686d595e802bd8bf691aeb7e30ba73f5a35280 (patch)
tree45da7d4143fe799bda51731217fde3588c8dfb1a /crash-driver.patch
parent761de8d1ef0e1cb1d370987d8d6485132b52b22c (diff)
downloadkernel-97686d595e802bd8bf691aeb7e30ba73f5a35280.tar.gz
kernel-97686d595e802bd8bf691aeb7e30ba73f5a35280.tar.xz
kernel-97686d595e802bd8bf691aeb7e30ba73f5a35280.zip
Fix crash driver build and re-enable on s390x (from Dan HorĂ¡k)
Diffstat (limited to 'crash-driver.patch')
-rw-r--r--crash-driver.patch26
1 files changed, 22 insertions, 4 deletions
diff --git a/crash-driver.patch b/crash-driver.patch
index 61c5dfd6..31e2b329 100644
--- a/crash-driver.patch
+++ b/crash-driver.patch
@@ -1,6 +1,6 @@
-From 9fcd8dd1ccc20ea8d466d48e887e92b832e22d56 Mon Sep 17 00:00:00 2001
+From 1786bc697d34af944e29437ce44337b0eb8b6799 Mon Sep 17 00:00:00 2001
From: Kyle McMartin <kyle@dreadnought.bos.jkkm.org>
-Date: Tue, 5 Nov 2013 13:16:00 -0500
+Date: Tue, 26 Nov 2013 12:42:46 -0500
Subject: [PATCH] crash-driver
---
@@ -10,12 +10,13 @@ Subject: [PATCH] crash-driver
arch/ia64/kernel/ia64_ksyms.c | 3 +
arch/powerpc/include/asm/crash.h | 6 ++
arch/s390/include/asm/crash.h | 60 ++++++++++++++++++
+ arch/s390/mm/maccess.c | 2 +
arch/x86/include/asm/crash.h | 6 ++
drivers/char/Kconfig | 3 +
drivers/char/Makefile | 2 +
drivers/char/crash.c | 128 +++++++++++++++++++++++++++++++++++++++
include/asm-generic/crash.h | 72 ++++++++++++++++++++++
- 11 files changed, 382 insertions(+)
+ 12 files changed, 384 insertions(+)
create mode 100644 arch/arm/include/asm/crash.h
create mode 100644 arch/arm64/include/asm/crash.h
create mode 100644 arch/ia64/include/asm/crash.h
@@ -237,6 +238,23 @@ index 0000000..552be5e
+#endif /* __KERNEL__ */
+
+#endif /* _S390_CRASH_H */
+diff --git a/arch/s390/mm/maccess.c b/arch/s390/mm/maccess.c
+index d1e0e0c..a2be459 100644
+--- a/arch/s390/mm/maccess.c
++++ b/arch/s390/mm/maccess.c
+@@ -219,6 +219,7 @@ void *xlate_dev_mem_ptr(unsigned long addr)
+ put_online_cpus();
+ return bounce;
+ }
++EXPORT_SYMBOL_GPL(xlate_dev_mem_ptr);
+
+ /*
+ * Free converted buffer for /dev/mem access (if necessary)
+@@ -228,3 +229,4 @@ void unxlate_dev_mem_ptr(unsigned long addr, void *buf)
+ if ((void *) addr != buf)
+ free_page((unsigned long) buf);
+ }
++EXPORT_SYMBOL_GPL(unxlate_dev_mem_ptr);
diff --git a/arch/x86/include/asm/crash.h b/arch/x86/include/asm/crash.h
new file mode 100644
index 0000000..27a4156
@@ -250,7 +268,7 @@ index 0000000..27a4156
+
+#endif /* _X86_CRASH_H */
diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig
-index 1421997..72a8b74 100644
+index fa3243d..83643e5b 100644
--- a/drivers/char/Kconfig
+++ b/drivers/char/Kconfig
@@ -4,6 +4,9 @@