From owner-cvs-all@FreeBSD.ORG Wed Jun 9 18:27:30 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 F3D2816A4CE; Wed, 9 Jun 2004 18:27:29 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 309EC43D2D; Wed, 9 Jun 2004 18:27:29 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.11/8.12.11) with ESMTP id i59IPrYh045917; Wed, 9 Jun 2004 12:25:53 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Wed, 09 Jun 2004 12:26:09 -0600 (MDT) Message-Id: <20040609.122609.76328844.imp@bsdimp.com> To: pjd@freebsd.org From: "M. Warner Losh" In-Reply-To: <20040609182041.GV12007@darkness.comp.waw.pl> References: <20040609175357.GA32787@freefall.freebsd.org> <20040609182041.GV12007@darkness.comp.waw.pl> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: src-committers@freebsd.org cc: cvs-src@freebsd.org cc: cvs-all@freebsd.org cc: phk@phk.freebsd.dk cc: bmilekic@freebsd.org cc: nate@root.org Subject: Re: cvs commit: src/sys/kern kern_proc.c 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: Wed, 09 Jun 2004 18:27:30 -0000 In message: <20040609182041.GV12007@darkness.comp.waw.pl> Pawel Jakub Dawidek writes: : BTW. Do we assume that atomic operations are atomic on MP machines? : I read atomic(9), but I still don't know if I should use it or not for : things like those. They are. That's one thing that pessimizes them so horribly. They have to be locked instructions on some architecutres that causes all kinds of nasty (time consuming) things to happen. Warner