aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar7/patches-3.14/200-free-mem-below-kernel-offset.patch
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2014-12-08 06:15:03 +0000
committerJohn Crispin <john@openwrt.org>2014-12-08 06:15:03 +0000
commit7c7964e10d7b74b31a0de734715371a96ce401f6 (patch)
treea5f23e635068597ce8dc81b044e6954ef0278ff4 /target/linux/ar7/patches-3.14/200-free-mem-below-kernel-offset.patch
parentaba92ec05ec71241da62a6c68e96f72067dd3732 (diff)
downloadupstream-7c7964e10d7b74b31a0de734715371a96ce401f6.tar.gz
upstream-7c7964e10d7b74b31a0de734715371a96ce401f6.tar.bz2
upstream-7c7964e10d7b74b31a0de734715371a96ce401f6.zip
ar7: bump to 3.14
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43553
Diffstat (limited to 'target/linux/ar7/patches-3.14/200-free-mem-below-kernel-offset.patch')
-rw-r--r--target/linux/ar7/patches-3.14/200-free-mem-below-kernel-offset.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/target/linux/ar7/patches-3.14/200-free-mem-below-kernel-offset.patch b/target/linux/ar7/patches-3.14/200-free-mem-below-kernel-offset.patch
new file mode 100644
index 0000000000..4011942d79
--- /dev/null
+++ b/target/linux/ar7/patches-3.14/200-free-mem-below-kernel-offset.patch
@@ -0,0 +1,15 @@
+--- a/arch/mips/ar7/memory.c
++++ b/arch/mips/ar7/memory.c
+@@ -66,5 +66,11 @@ void __init prom_meminit(void)
+
+ void __init prom_free_prom_memory(void)
+ {
+- /* Nothing to free */
++ /* adapted from arch/mips/txx9/generic/setup.c */
++ unsigned long saddr = PHYS_OFFSET + PAGE_SIZE;
++ unsigned long eaddr = __pa_symbol(&_text);
++
++ /* free memory between prom-record and kernel _text base */
++ if (saddr < eaddr)
++ free_init_pages("prom memory", saddr, eaddr);
+ }