Mike Makonnen wrote: > On Mon, 2002-03-11 at 18:03, Clark C . Evans wrote: > > panic: pmap_enter: attempted pmap_enter on 4MB page > > > > trace: > > Debugger > > panic > > pmap_enter > > vm_fault > > trap_pfault > > trap > > calltrap > > > > It seems to me that you are showing only the last part of the trace, > which shows where a second panic occurred. While that may also be an > issue the real reason for the panic occurred earlier. Please post the > complete trace.
You faulted on a 4M page mapping for which backing store was not assigned. You are not permitted to create 4M pages without assigned backing store (basically, you can't page them in and out). Probably you are doing something incredibly weird that you are not allowed to do, but don't want to tell us about... -- Terry To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

