summaryrefslogtreecommitdiff
path: root/debian/patches/debian
diff options
context:
space:
mode:
authorBen Hutchings <benh@debian.org>2015-04-06 23:34:58 +0000
committerBen Hutchings <benh@debian.org>2015-04-06 23:34:58 +0000
commit1ec90dfaed1ac7d192bc1bb70a01d5e96e02ac76 (patch)
tree3735bcc9476c69230037e43990faae003f2ac1d3 /debian/patches/debian
parent2669f998249e7f67ead07bf585f3d0b97b159cd6 (diff)
Resolve remaining ABI changes
Restore a #include dropped from fs/proc/generic.c which perturbed genksyms. Ignore the removal of exported static functions from snd-hda-controller which shouldn't be used OOT (they were only ever meant for use by other modules in that directory). svn path=/dists/sid/linux/; revision=22486
Diffstat (limited to 'debian/patches/debian')
-rw-r--r--debian/patches/debian/procfs-avoid-abi-change-in-3.16.7-ckt8.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/patches/debian/procfs-avoid-abi-change-in-3.16.7-ckt8.patch b/debian/patches/debian/procfs-avoid-abi-change-in-3.16.7-ckt8.patch
new file mode 100644
index 000000000..a7f643af4
--- /dev/null
+++ b/debian/patches/debian/procfs-avoid-abi-change-in-3.16.7-ckt8.patch
@@ -0,0 +1,18 @@
+From: Ben Hutchings <ben@decadent.org.uk>
+Date: Tue, 07 Apr 2015 00:20:38 +0100
+Subject: procfs: Avoid ABI change in 3.16.7-ckt8
+
+genksyms is perturbed by removing this #include even though none of
+its definitions are needed by exported functions...
+
+---
+--- a/fs/proc/generic.c
++++ b/fs/proc/generic.c
+@@ -19,6 +19,7 @@
+ #include <linux/mount.h>
+ #include <linux/init.h>
+ #include <linux/idr.h>
++#include <linux/namei.h>
+ #include <linux/bitops.h>
+ #include <linux/spinlock.h>
+ #include <linux/completion.h>