Subject: Re: Netscape panics 1.6I kernel
To: Paul Mather <paul@gromit.dlib.vt.edu>
From: Chuck Silvers <chuq@chuq.com>
List: port-alpha
Date: 10/12/2002 15:59:53
--u3/rZRmxL6MmkK24
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

hi,


On Sat, Oct 12, 2002 at 04:40:13PM -0400, Paul Mather wrote:
> panic: kernel diagnostic assertion "cmd->ev_vp->v_flag & VTEXT" failed: file "/sys/arch/alpha/compile/HAWKWIND/../../../../kern/exec_subr.c", line 142

that would be my fault.  please try the attached patch and let me know
if it fixes the problem.

-Chuck

--u3/rZRmxL6MmkK24
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="diff.ecoff"

Index: kern/exec_ecoff.c
===================================================================
RCS file: /cvsroot/syssrc/sys/kern/exec_ecoff.c,v
retrieving revision 1.18
diff -u -r1.18 exec_ecoff.c
--- kern/exec_ecoff.c	2002/10/05 22:34:05	1.18
+++ kern/exec_ecoff.c	2002/10/12 22:55:56
@@ -237,7 +237,7 @@
 	epp->ep_dsize = eap->dsize + eap->bsize;
 	epp->ep_entry = eap->entry;
 
-	error = vn_marktext(epp->ep_vp);
+	error = vn_marktext(vp);
 	if (error)
 		return (error);
 

--u3/rZRmxL6MmkK24--