From owner-p4-projects@FreeBSD.ORG Mon Apr 21 01:34:08 2003 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 0507F37B404; Mon, 21 Apr 2003 01:34:08 -0700 (PDT) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 90BCC37B401 for ; Mon, 21 Apr 2003 01:34:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BCC443FAF for ; Mon, 21 Apr 2003 01:34:07 -0700 (PDT) (envelope-from marcel@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3L8Y70U048189 for ; Mon, 21 Apr 2003 01:34:07 -0700 (PDT) (envelope-from marcel@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3L8Y6RR048181 for perforce@freebsd.org; Mon, 21 Apr 2003 01:34:06 -0700 (PDT) Date: Mon, 21 Apr 2003 01:34:06 -0700 (PDT) Message-Id: <200304210834.h3L8Y6RR048181@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to marcel@freebsd.org using -f From: Marcel Moolenaar To: Perforce Change Reviews Subject: PERFORCE change 29341 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Apr 2003 08:34:09 -0000 http://perforce.freebsd.org/chv.cgi?CH=29341 Change 29341 by marcel@marcel_nfs on 2003/04/21 01:33:49 Fix another breakage caused by the rewrite of exec_setregs: we have to have at least 3 registers worth of dirty bytes in order to have the initial arguments loaded in the stacked registers. This is specific to the break-based syscall path and got axed by accident. Affected files ... .. //depot/projects/ia64_epc/sys/ia64/ia64/machdep.c#16 edit Differences ... ==== //depot/projects/ia64_epc/sys/ia64/ia64/machdep.c#16 (text+ko) ==== @@ -1115,6 +1115,7 @@ tf->tf_special.iip = entry; tf->tf_special.cfm = (1UL<<63) | (3UL<<7) | 3UL; tf->tf_special.bspstore = td->td_md.md_bspstore; + tf->tf_special.ndirty = 24; /* * Copy the arguments onto the kernel register stack so that * they get loaded by the loadrs instruction.