Subject: Re: Questions about ncr53c9x driver
To: Markus Baeurle <emw4maba@gp.fht-esslingen.de>
From: Mark Brinicombe <mark@causality.com>
List: port-arm32
Date: 09/07/1998 21:33:34
On Mon, 7 Sep 1998, Markus Baeurle wrote:

> Hello everybody!
> 
> So I moved back to a known good version of the Cumana driver with its own
> private chip layer. A kernel with this gives the following error:
> 
> root fs type: ffs
> exec /sbin/init: error 14
> init: not found
> panic: no init
> 
> In case you want to look at the source, it's in /sys/kern/init_main.c, line
> 572. Error 14 is EFAULT according to errno.h, the remark says "Bad address".
> What could be the reason for this? Is there anything I have to update?
> 
Hi,
  Ok I suspect that this is a problem with the build. I would guess that
the files bcopyinout.o fusu.o bcopystr.o were not recompiled following the
recent changes I made to vmparam.h. These changes increased the size of
the kernel VM data area and unless these files are recompiled various
accesses to the kernel data area will be prevented as they will be using
the old size. i.e. copyin, copyout etc will return EFAULT.

Cheers,
				Mark