Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus

* 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus:
MIPS: BCM47xx: Fix 128MB RAM support
MIPS: Highmem: Fix build error

+9
+8
arch/mips/bcm47xx/prom.c
··· 141 141 break; 142 142 } 143 143 144 + /* Ignoring the last page when ddr size is 128M. Cached 145 + * accesses to last page is causing the processor to prefetch 146 + * using address above 128M stepping out of the ddr address 147 + * space. 148 + */ 149 + if (mem == 0x8000000) 150 + mem -= 0x1000; 151 + 144 152 add_memory_region(0, mem, BOOT_MEM_RAM); 145 153 } 146 154
+1
arch/mips/mm/highmem.c
··· 1 1 #include <linux/module.h> 2 2 #include <linux/highmem.h> 3 + #include <linux/sched.h> 3 4 #include <linux/smp.h> 4 5 #include <asm/fixmap.h> 5 6 #include <asm/tlbflush.h>