summaryrefslogtreecommitdiffstats
path: root/modsplit-post-merge.patch
diff options
context:
space:
mode:
authorJosh Boyer <jwboyer@redhat.com>2011-11-08 07:39:48 -0500
committerJosh Boyer <jwboyer@redhat.com>2011-11-08 07:39:48 -0500
commite3e38acf4d2f5d18ff720e3580201b55bc36a7ab (patch)
tree83b3b90b6956dc893dc7b042011e8da8de7101c3 /modsplit-post-merge.patch
parent44ef27d0d05713408d7afbf1155d53b24bacc69c (diff)
downloadkernel-e3e38acf4d2f5d18ff720e3580201b55bc36a7ab.tar.gz
kernel-e3e38acf4d2f5d18ff720e3580201b55bc36a7ab.tar.xz
kernel-e3e38acf4d2f5d18ff720e3580201b55bc36a7ab.zip
Linux 3.2-rc1
From kernel.org this time, not git generated locally: http://www.kernel.org/pub/linux/kernel/v3.x/patch-3.2-rc1.bz2
Diffstat (limited to 'modsplit-post-merge.patch')
-rw-r--r--modsplit-post-merge.patch156
1 files changed, 0 insertions, 156 deletions
diff --git a/modsplit-post-merge.patch b/modsplit-post-merge.patch
deleted file mode 100644
index 2aa65edb..00000000
--- a/modsplit-post-merge.patch
+++ /dev/null
@@ -1,156 +0,0 @@
-From 15a91ab0dc89e3f6eaeb76d9fcf0d151c6b171c6 Mon Sep 17 00:00:00 2001
-From: Paul Gortmaker <paul.gortmaker@windriver.com>
-Date: Sat, 8 Oct 2011 23:24:48 -0400
-Subject: [PATCH] arm: Add export.h to recently added files for EXPORT_SYMBOL
-
-These files didn't exist at the time of the module.h split, and
-so were not fixed by the commits on that baseline. Since they use
-the EXPORT_SYMBOL and/or THIS_MODULE macros, they will need the
-new export.h file included that provides them.
-
-Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
-
-diff --git a/arch/arm/plat-samsung/dma-ops.c b/arch/arm/plat-samsung/dma-ops.c
-index 6e3d9ab..93a994a 100644
---- a/arch/arm/plat-samsung/dma-ops.c
-+++ b/arch/arm/plat-samsung/dma-ops.c
-@@ -14,6 +14,7 @@
- #include <linux/errno.h>
- #include <linux/amba/pl330.h>
- #include <linux/scatterlist.h>
-+#include <linux/export.h>
-
- #include <mach/dma.h>
-
-diff --git a/arch/arm/plat-samsung/s3c-dma-ops.c b/arch/arm/plat-samsung/s3c-dma-ops.c
-index 582333c..7814949 100644
---- a/arch/arm/plat-samsung/s3c-dma-ops.c
-+++ b/arch/arm/plat-samsung/s3c-dma-ops.c
-@@ -14,6 +14,7 @@
- #include <linux/errno.h>
- #include <linux/slab.h>
- #include <linux/types.h>
-+#include <linux/export.h>
-
- #include <mach/dma.h>
-
---
-1.7.6
-
-From 284e50580e13aa492677a987d1e4e3d72dd63c63 Mon Sep 17 00:00:00 2001
-From: Paul Gortmaker <paul.gortmaker@windriver.com>
-Date: Wed, 28 Sep 2011 18:29:32 -0400
-Subject: [PATCH] drivers/md: change module.h -> export.h in
- persistent-data/dm-*
-
-For the files which are not themselves modular, we can change
-them to include only the smaller export.h since all they are
-doing is looking for EXPORT_SYMBOL.
-
-Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
-Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
-
-diff --git a/drivers/md/persistent-data/dm-btree-remove.c b/drivers/md/persistent-data/dm-btree-remove.c
-index cdd71d6..e7071f6 100644
---- a/drivers/md/persistent-data/dm-btree-remove.c
-+++ b/drivers/md/persistent-data/dm-btree-remove.c
-@@ -8,7 +8,7 @@
- #include "dm-btree-internal.h"
- #include "dm-transaction-manager.h"
-
--#include <linux/module.h>
-+#include <linux/export.h>
-
- /*
- * Removing an entry from a btree
-diff --git a/drivers/md/persistent-data/dm-btree.c b/drivers/md/persistent-data/dm-btree.c
-index ca16d5b..408b762 100644
---- a/drivers/md/persistent-data/dm-btree.c
-+++ b/drivers/md/persistent-data/dm-btree.c
-@@ -8,7 +8,7 @@
- #include "dm-space-map.h"
- #include "dm-transaction-manager.h"
-
--#include <linux/module.h>
-+#include <linux/export.h>
- #include <linux/device-mapper.h>
-
- #define DM_MSG_PREFIX "btree"
-diff --git a/drivers/md/persistent-data/dm-space-map-disk.c b/drivers/md/persistent-data/dm-space-map-disk.c
-index 6229a4e..e6b9d67 100644
---- a/drivers/md/persistent-data/dm-space-map-disk.c
-+++ b/drivers/md/persistent-data/dm-space-map-disk.c
-@@ -12,7 +12,7 @@
-
- #include <linux/list.h>
- #include <linux/slab.h>
--#include <linux/module.h>
-+#include <linux/export.h>
- #include <linux/device-mapper.h>
-
- #define DM_MSG_PREFIX "space map disk"
-diff --git a/drivers/md/persistent-data/dm-transaction-manager.c b/drivers/md/persistent-data/dm-transaction-manager.c
-index be594dd..e58e89e 100644
---- a/drivers/md/persistent-data/dm-transaction-manager.c
-+++ b/drivers/md/persistent-data/dm-transaction-manager.c
-@@ -9,7 +9,7 @@
- #include "dm-space-map-metadata.h"
- #include "dm-persistent-data-internal.h"
-
--#include <linux/module.h>
-+#include <linux/export.h>
- #include <linux/slab.h>
- #include <linux/device-mapper.h>
-
---
-1.7.6
-
-From 1193701b97f5dc4ca6a62a704dd55b058bfcf497 Mon Sep 17 00:00:00 2001
-From: Stephen Rothwell <sfr@canb.auug.org.au>
-Date: Tue, 1 Nov 2011 18:30:49 +1100
-Subject: [PATCH] device-mapper: dm-bufio.c needs to include module.h
-
-since it uses the module facilities.
-
-Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
-Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
-
-diff --git a/drivers/md/dm-bufio.c b/drivers/md/dm-bufio.c
-index cb24666..0a6806f 100644
---- a/drivers/md/dm-bufio.c
-+++ b/drivers/md/dm-bufio.c
-@@ -14,6 +14,7 @@
- #include <linux/vmalloc.h>
- #include <linux/version.h>
- #include <linux/shrinker.h>
-+#include <linux/module.h>
-
- #define DM_MSG_PREFIX "bufio"
-
---
-1.7.4.4
-
-From 8f3a8c73998ac2f9294bba483002ac906f18b92a Mon Sep 17 00:00:00 2001
-From: Stephen Rothwell <sfr@canb.auug.org.au>
-Date: Tue, 1 Nov 2011 20:27:43 +1100
-Subject: [PATCH] device-mapper: using EXPORT_SYBOL in dm-space-map-checker.c
- needs export.h
-
-Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
-Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
-
-diff --git a/drivers/md/persistent-data/dm-space-map-checker.c b/drivers/md/persistent-data/dm-space-map-checker.c
-index bb44a93..50ed53b 100644
---- a/drivers/md/persistent-data/dm-space-map-checker.c
-+++ b/drivers/md/persistent-data/dm-space-map-checker.c
-@@ -7,6 +7,7 @@
- #include "dm-space-map-checker.h"
-
- #include <linux/device-mapper.h>
-+#include <linux/export.h>
-
- #ifdef CONFIG_DM_DEBUG_SPACE_MAPS
-
---
-1.7.4.4
-