svn commit: r318602 - head/sys/mips/atheros
Adrian Chadd
adrian at FreeBSD.org
Sun May 21 23:56:00 UTC 2017
Author: adrian
Date: Sun May 21 23:55:58 2017
New Revision: 318602
URL: https://svnweb.freebsd.org/changeset/base/318602
Log:
[ar71xx] fix up dump space a la what jhb@ did elsewhere a while ago.
Modified:
head/sys/mips/atheros/ar71xx_machdep.c
Modified: head/sys/mips/atheros/ar71xx_machdep.c
==============================================================================
--- head/sys/mips/atheros/ar71xx_machdep.c Sun May 21 23:15:32 2017 (r318601)
+++ head/sys/mips/atheros/ar71xx_machdep.c Sun May 21 23:55:58 2017 (r318602)
@@ -383,8 +383,8 @@ platform_start(__register_t a0 __unused,
phys_avail[0] = MIPS_KSEG0_TO_PHYS(kernel_kseg0_end);
phys_avail[1] = ctob(realmem);
- dump_avail[0] = phys_avail[0];
- dump_avail[1] = phys_avail[1] - phys_avail[0];
+ dump_avail[0] = 0;
+ dump_avail[1] = phys_avail[1];
physmem = realmem;
More information about the svn-src-head
mailing list