aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/coldfire/patches/011-mcfv4e_namespace_align.patch
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2010-11-22 13:31:46 +0000
committerImre Kaloz <kaloz@openwrt.org>2010-11-22 13:31:46 +0000
commit41d306c95b13e322023c5795ee46f98cbb723434 (patch)
treea5e99f7798071ae6ca4b0fbd43d490c0987393db /target/linux/coldfire/patches/011-mcfv4e_namespace_align.patch
parent69b87e767b7dc9ffe8c3081e9921aa0891d068ee (diff)
downloadmaster-187ad058-41d306c95b13e322023c5795ee46f98cbb723434.tar.gz
master-187ad058-41d306c95b13e322023c5795ee46f98cbb723434.tar.bz2
master-187ad058-41d306c95b13e322023c5795ee46f98cbb723434.zip
[coldfire]: remove 2.6.25 support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24088 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/coldfire/patches/011-mcfv4e_namespace_align.patch')
-rw-r--r--target/linux/coldfire/patches/011-mcfv4e_namespace_align.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/target/linux/coldfire/patches/011-mcfv4e_namespace_align.patch b/target/linux/coldfire/patches/011-mcfv4e_namespace_align.patch
deleted file mode 100644
index 6bdac88458..0000000000
--- a/target/linux/coldfire/patches/011-mcfv4e_namespace_align.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From a51f4e9bff26cc43b53938169f98c27183ec63ea Mon Sep 17 00:00:00 2001
-From: Kurt Mahan <kmahan@freescale.com>
-Date: Wed, 31 Oct 2007 17:08:59 -0600
-Subject: [PATCH] Change to align on page size for COLDFIRE.
-
-LTIBName: mcfv4e-namespace-align
-Signed-off-by: Kurt Mahan <kmahan@freescale.com>
----
- fs/namespace.c | 4 ++++
- 1 files changed, 4 insertions(+), 0 deletions(-)
-
---- a/fs/namespace.c
-+++ b/fs/namespace.c
-@@ -1364,7 +1364,11 @@ int copy_mount_options(const void __user
- /* copy_from_user cannot cross TASK_SIZE ! */
- size = TASK_SIZE - (unsigned long)data;
- if (size > PAGE_SIZE)
-+#ifndef CONFIG_COLDFIRE
- size = PAGE_SIZE;
-+#else
-+ size = PAGE_SIZE - ((unsigned long)data & ~PAGE_MASK);
-+#endif
-
- i = size - exact_copy_from_user((void *)page, data, size);
- if (!i) {