aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Hutchings <benh@debian.org>2014-04-16 12:26:23 +0000
committerBen Hutchings <benh@debian.org>2014-04-16 12:26:23 +0000
commite52899ff55c907ba79e68eec6ab79283725bbf1b (patch)
treeca26b4602a7c745d1e9e939810200e91db7bc727
parentebb94e764b08ba977fa08dddad325ab37311c58a (diff)
downloadkernel_replicant_linux-e52899ff55c907ba79e68eec6ab79283725bbf1b.tar.gz
kernel_replicant_linux-e52899ff55c907ba79e68eec6ab79283725bbf1b.tar.bz2
kernel_replicant_linux-e52899ff55c907ba79e68eec6ab79283725bbf1b.zip
Remove unused patches
svn path=/dists/trunk/linux/; revision=21241
-rw-r--r--debian/patches/debian/trace-avoid-abi-change-in-3.13.8.patch20
-rw-r--r--debian/patches/debian/vfs-avoid-abi-change-in-3.13.9.patch47
2 files changed, 0 insertions, 67 deletions
diff --git a/debian/patches/debian/trace-avoid-abi-change-in-3.13.8.patch b/debian/patches/debian/trace-avoid-abi-change-in-3.13.8.patch
deleted file mode 100644
index 02a887e0917d..000000000000
--- a/debian/patches/debian/trace-avoid-abi-change-in-3.13.8.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-From: Ben Hutchings <ben@decadent.org.uk>
-Date: Tue, 15 Apr 2014 22:05:04 +0100
-Subject: trace: Avoid ABI change in 3.13.8
-Forwarded: not-needed
-
---- a/kernel/trace/trace_events.c
-+++ b/kernel/trace/trace_events.c
-@@ -27,6 +27,12 @@
-
- DEFINE_MUTEX(event_mutex);
-
-+/* Should no longer be used, but kept for compatibility with older modules */
-+DEFINE_MUTEX(event_storage_mutex);
-+EXPORT_SYMBOL_GPL(event_storage_mutex);
-+char event_storage[128];
-+EXPORT_SYMBOL_GPL(event_storage);
-+
- LIST_HEAD(ftrace_events);
- static LIST_HEAD(ftrace_common_fields);
-
diff --git a/debian/patches/debian/vfs-avoid-abi-change-in-3.13.9.patch b/debian/patches/debian/vfs-avoid-abi-change-in-3.13.9.patch
deleted file mode 100644
index 43d6384f2223..000000000000
--- a/debian/patches/debian/vfs-avoid-abi-change-in-3.13.9.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-From: Ben Hutchings <ben@decadent.org.uk>
-Date: Tue, 15 Apr 2014 21:56:00 +0100
-Subject: vfs: Avoid ABI change in 3.13.9
-Forwarded: not-needed
-
---- a/fs/mount.h
-+++ b/fs/mount.h
-@@ -18,14 +18,27 @@ struct mnt_pcp {
- int mnt_writers;
- };
-
-+/*
-+ * These structures are not exposed to modules, but changes somehow
-+ * still affect exported symbol versions!
-+ */
-+
- struct mountpoint {
-+#ifdef __GENKSYMS__
-+ struct list_head m_hash; /* not really */
-+#else
- struct hlist_node m_hash;
-+#endif
- struct dentry *m_dentry;
- int m_count;
- };
-
- struct mount {
-+#ifdef __GENKSYMS__
-+ struct list_head mnt_hash; /* not really */
-+#else
- struct hlist_node mnt_hash;
-+#endif
- struct mount *mnt_parent;
- struct dentry *mnt_mountpoint;
- struct vfsmount mnt;
---- a/fs/namespace.c
-+++ b/fs/namespace.c
-@@ -23,7 +23,9 @@
- #include <linux/uaccess.h>
- #include <linux/proc_ns.h>
- #include <linux/magic.h>
-+#ifndef __GENKSYMS__
- #include <linux/bootmem.h>
-+#endif
- #include "pnode.h"
- #include "internal.h"
-