Subject: Re: Newbie questions
To: None <prlw1@cam.ac.uk>
From: Bill Sommerfeld <sommerfeld@orchard.arlington.ma.us>
List: tech-kern
Date: 01/27/2001 18:00:29
The normal convention for user/kernel memory allocation is that
user-land code should have (nearly) complete control of "what goes
where" within the user address space; likewise for kernel code and the
kernel address space.

You need to redesign your user-kernel interface so that userland code
allocates parts of its address space for the kernel to copy things
into.

						- Bill