From owner-cvs-all Thu Feb 22 10: 5:21 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A258937B491; Thu, 22 Feb 2001 10:05:16 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1MI5GM27652; Thu, 22 Feb 2001 10:05:16 -0800 (PST) (envelope-from jhb) Message-Id: <200102221805.f1MI5GM27652@freefall.freebsd.org> From: John Baldwin Date: Thu, 22 Feb 2001 10:05:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa ipl.s src/sys/i386/i386 trap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2001/02/22 10:05:16 PST Modified files: sys/i386/isa ipl.s sys/i386/i386 trap.c Log: - Change ast() to take a pointer to a trapframe like other architectures. - Don't use an atomic operation to update cnt.v_soft in ast(). This is the only place the variable is written to, and sched_lock is always held when it is written, so it is already protected and the mutex release of sched_lock asserts a memory barrier that ensures the value will be updated in a timely fashion. Revision Changes Path 1.47 +3 -1 src/sys/i386/isa/ipl.s 1.180 +8 -8 src/sys/i386/i386/trap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message