The acid kernel library has drifted a bit, presumably due to disuse. No surprises, just fixes to support the current kernel. Reference: /n/sources/patch/applied/acid-kernel Date: Sat Sep 15 06:12:27 CES 2012 Signed-off-by: sstallion@gmail.com --- /sys/lib/acid/kernel Sat Sep 15 06:04:20 2012 +++ /sys/lib/acid/kernel Sat Sep 15 06:04:18 2012 @@ -32,7 +32,7 @@ defn imagecacheline(h) { while h != 0 do { complex Image h; - print (h\X, " ", qid(h.qid), " type ", h.type\D, " ref ", h.ref, " next ", h.next\X, " ", cname(h.c.name), "\n"); + print (h\X, " ", qid(h.qid), " type ", h.type\D, " ref ", h.ref, " next ", h.next\X, " ", path(h.c.path), "\n"); h = h.hash; } } @@ -56,9 +56,9 @@ print("chan(", c\X, "): ref=", c.ref\D, " #", d.dc\r, c.dev\D, " (", q.path, " ", q.vers\D, " ", q.type\X, ")"); print(" fid=", c.fid\D, " iounit=", c.iounit\D); if c.ref != 0 then { - print(" ", cname(c.name), " mchan=", c.mchan\X); + print(" ", path(c.path), " mchan=", c.mchan\X); if c.mchan != 0 then { - print(" ", cname(c.mchan.name)); + print(" ", path(c.mchan.path)); } } print("\n"); @@ -186,7 +186,7 @@ e = p.egrp; complex Egrp e; - v = e.entries; + v = e.ent; while v != 0 do { complex Evalue v; print(*(v.name\s), "="); @@ -333,7 +333,7 @@ defn up() { local mach; - MACHADDR = KZERO+0x4000; + MACHADDR = KZERO+0x15000; mach = MACHADDR; complex Mach mach; return mach.externup;