summaryrefslogtreecommitdiffstats
path: root/irqnr-build.patch
diff options
context:
space:
mode:
authorJustin M. Forbes <jforbes@redhat.com>2012-10-15 15:57:08 -0500
committerJustin M. Forbes <jforbes@redhat.com>2012-10-15 15:57:08 -0500
commitcae83cc099abfdb9424cb9e93c31b5c8d45c8b01 (patch)
tree4a75cd33c29d82517ded90fc4f73cb82480f72b2 /irqnr-build.patch
parentbe7ac52af682ed133aa613ed21c756d1459ff3aa (diff)
downloadkernel-cae83cc099abfdb9424cb9e93c31b5c8d45c8b01.tar.gz
kernel-cae83cc099abfdb9424cb9e93c31b5c8d45c8b01.tar.xz
kernel-cae83cc099abfdb9424cb9e93c31b5c8d45c8b01.zip
Add irqnr patch to make things compile
Diffstat (limited to 'irqnr-build.patch')
-rw-r--r--irqnr-build.patch43
1 files changed, 43 insertions, 0 deletions
diff --git a/irqnr-build.patch b/irqnr-build.patch
new file mode 100644
index 000000000..b6797b4e3
--- /dev/null
+++ b/irqnr-build.patch
@@ -0,0 +1,43 @@
+uapi/linux/irqnr.h was emitted by the UAPI disintegration script as an empty
+file because the parent linux/irqnr.h had no UAPI stuff in it, despite being
+marked with "header-y".
+
+Unfortunately, it patch deletes the empty file when applying a kernel patch.
+
+It's not clear why this file is part of the UAPI at all. Looking in:
+
+ /usr/include/linux/irqnr.h
+
+there's nothing there but a header reinclusion guard and a comment.
+
+So just stick a comment in there as a placeholder.
+
+Without this, if the kernel is fabricated from, say, a tarball and a patch, you
+can get this error when building x86_64 or usermode Linux (and probably
+others):
+
+include/linux/irqnr.h:4:30: fatal error: uapi/linux/irqnr.h: No such file or directory
+
+Signed-off-by: David Howells <dhowells@redhat.com>
+cc: Randy Dunlap <rdunlap@xenotime.net>
+cc: Alessandro Suardi <alessandro.suardi@gmail.com>
+---
+
+ include/uapi/linux/irqnr.h | 4 ++++
+ 1 file changed, 4 insertions(+)
+
+diff --git a/include/uapi/linux/irqnr.h b/include/uapi/linux/irqnr.h
+index e69de29..ae5704f 100644
+--- a/include/uapi/linux/irqnr.h
++++ b/include/uapi/linux/irqnr.h
+@@ -0,0 +1,4 @@
++/*
++ * There isn't anything here anymore, but the file must not be empty or patch
++ * will delete it.
++ */
+
+--
+To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
+the body of a message to majordomo@vger.kernel.org
+More majordomo info at http://vger.kernel.org/majordomo-info.html
+Please read the FAQ at http://www.tux.org/lkml/