From 343c185b7d7383b1f5b5144e837045af28afc42b Mon Sep 17 00:00:00 2001 From: kaloz Date: Tue, 23 Jun 2009 21:04:37 +0000 Subject: use broken-out patches for the coldfire to make it easier to follow differences against the bsp git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16547 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../patches/011-mcfv4e_namespace_align.patch | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 target/linux/coldfire/patches/011-mcfv4e_namespace_align.patch (limited to 'target/linux/coldfire/patches/011-mcfv4e_namespace_align.patch') diff --git a/target/linux/coldfire/patches/011-mcfv4e_namespace_align.patch b/target/linux/coldfire/patches/011-mcfv4e_namespace_align.patch new file mode 100644 index 000000000..6bdac8845 --- /dev/null +++ b/target/linux/coldfire/patches/011-mcfv4e_namespace_align.patch @@ -0,0 +1,25 @@ +From a51f4e9bff26cc43b53938169f98c27183ec63ea Mon Sep 17 00:00:00 2001 +From: Kurt Mahan +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 +--- + 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) { -- cgit v1.2.3