PERFORCE change 30836 for review
Juli Mallett
jmallett at FreeBSD.org
Thu May 8 23:26:33 PDT 2003
http://perforce.freebsd.org/chv.cgi?CH=30836
Change 30836 by jmallett at jmallett_dalek on 2003/05/08 23:26:29
Fill phys_avail with the addresses through KSEG0.
Affected files ...
.. //depot/projects/mips/sys/mips/sgimips/machdep_sgimips.c#14 edit
Differences ...
==== //depot/projects/mips/sys/mips/sgimips/machdep_sgimips.c#14 (text+ko) ====
@@ -134,8 +134,8 @@
printf("Physical available block %d:\n", j);
printf("Available memory range %0x-%0x\n",
first, last);
- phys_avail[j + 0] = first;
- phys_avail[j + 1] = last;
+ phys_avail[j + 0] = MIPS_PHYS_TO_KSEG0(first);
+ phys_avail[j + 1] = MIPS_PHYS_TO_KSEG0(last);
j += 2;
break;
default:
More information about the p4-projects
mailing list