From owner-cvs-all@FreeBSD.ORG Sat Aug 7 21:55:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF02116A4CF; Sat, 7 Aug 2004 21:55:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDD4743D48; Sat, 7 Aug 2004 21:55:17 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i77LtGVN077980; Sat, 7 Aug 2004 21:55:16 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i77LtGfj077979; Sat, 7 Aug 2004 21:55:16 GMT (envelope-from marcel) Message-Id: <200408072155.i77LtGfj077979@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 7 Aug 2004 21:55:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 locore.S syscall.S X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Aug 2004 21:55:18 -0000 marcel 2004-08-07 21:55:16 UTC FreeBSD src repository Modified files: sys/ia64/ia64 locore.S syscall.S Log: Slightly move labels around to make sure we call ast() on our way out after a fork(2) in fork_trampoline(). By moving the epc_syscall_return label immediately before the call to do_ast() in epc_syscall(), we not only achieve that but also handle the detour through exception_return when the frame corresponds to an asynchronous kernel entry. Hence, we simplified fork_trampoline() as a side-effect. Revision Changes Path 1.35 +3 -10 src/sys/ia64/ia64/locore.S 1.12 +2 -3 src/sys/ia64/ia64/syscall.S