~kris/9p

9hist

070285fbe8a2add3059d774cf070773ef6889610 — David du Colombier 32 years ago d3db1bf
Plan 9 from Bell Labs 1994-01-15
3 files changed, 2 insertions(+), 2 deletions(-)

M carrera/main.c
M carrera/trap.c
M port/chan.c
M carrera/main.c => carrera/main.c +1 -1
@@ 248,7 248,7 @@ iomapinit(void)

	/* Set the translation table */
	IO(ulong, Ttbr) = PADDR(t);
	IO(ulong, Tlrb) = (Ntranslation-1)*sizeof(Tte);
	IO(ulong, Tlrb) = Ntranslation*sizeof(Tte);

	/* Invalidate the old entries */
	IO(ulong, Tir) = 0;

M carrera/trap.c => carrera/trap.c +0 -1
@@ 329,7 329,6 @@ intr(Ureg *ur)
		iprint("i386ACK #%lux\n", devint);
		cause &= ~INTR4;
	}

	if(cause & INTR7) {
		clock(ur);
		cause &= ~INTR7;

M port/chan.c => port/chan.c +1 -0
@@ 287,6 287,7 @@ unmount(Chan *mnt, Chan *mounted)

	p = &m->mount;
	for(f = *p; f; f = f->next) {
		/* BUG: Needs to be 2 pass */
		if(eqchan(f->to, mounted, 1) || eqchan(f->to->mchan, mounted, 1)) {
			*p = f->next;
			f->next = 0;