aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar7/patches-3.18/200-free-mem-below-kernel-offset.patch
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2015-02-09 12:12:30 +0000
committerJohn Crispin <blogic@openwrt.org>2015-02-09 12:12:30 +0000
commit90a6b535b3652ed7b60c1d5d66ebf96db694b85b (patch)
tree3cb4334f0d195dd458acebf7c05104deeadb7f27 /target/linux/ar7/patches-3.18/200-free-mem-below-kernel-offset.patch
parentface9b819a6d844d9671e977ce074a0923b6f6b0 (diff)
downloadupstream-90a6b535b3652ed7b60c1d5d66ebf96db694b85b.tar.gz
upstream-90a6b535b3652ed7b60c1d5d66ebf96db694b85b.tar.bz2
upstream-90a6b535b3652ed7b60c1d5d66ebf96db694b85b.zip
ar7: add 3.18 support
this is only compile tested Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44344 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar7/patches-3.18/200-free-mem-below-kernel-offset.patch')
-rw-r--r--target/linux/ar7/patches-3.18/200-free-mem-below-kernel-offset.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/target/linux/ar7/patches-3.18/200-free-mem-below-kernel-offset.patch b/target/linux/ar7/patches-3.18/200-free-mem-below-kernel-offset.patch
new file mode 100644
index 0000000000..4011942d79
--- /dev/null
+++ b/target/linux/ar7/patches-3.18/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);
+ }