~kris/9p

9hist

eae1d26ab6ed1a704d33f1990080e096294dc6e5 — David du Colombier 26 years ago d705bfa
Plan 9 from Bell Labs 2000-09-23
1 files changed, 4 insertions(+), 2 deletions(-)

M bitsy/mmu.c
M bitsy/mmu.c => bitsy/mmu.c +4 -2
@@ 91,9 91,11 @@ mmuinit(void)
}

/*
 *  map special space, assume that the space isn't already mapped
 *  map special space uncached, assume that the space isn't already mapped
 */
ulong*
mapspecmeg(ulong physaddr, int len)
ulong*
mapspecial(ulong physaddr, int len)
{
	ulong *t;


@@ 131,7 133,7 @@ mapspecial(ulong physaddr, int len)
				candidate = virtaddr+i;
			} else {
				/* look for contiunued range */
				if((entry & L2PageBaseMask) != base + off)
				if((entry & L2PageBaseMask) != base + off){
					candidate = 0;
					continue;
				}