re all! Well after quite a debugging session with cinap tonight on irc, I can confirm that the patch from eric with the modifications cinap made to it works like a charm. I was able to boot the new kernel, and it's now up and running.
regards John On Sat, 8 Sep 2007 21:08:34 +0200 [EMAIL PROTECTED] wrote: > > n/sources/plan9//sys/src/cmd/venti/srv/ifile.c:36,43 - ifile.c:36,44 > > freepart(p); > > return -1; > > } > > - b->data += m; > > - b->len -= m; > > + memmove(b->data, b->data+m, 8192-m); > > /* > * > + memset(b->data+8192-m, 0, 8192-m); > */ > > memset(b->data + 8192-m, 0, m); > > > + > > z = memchr(b->data, 0, b->len); > > if(z) > > b->len = z - b->data; > > cinap >
