From owner-svn-src-user@FreeBSD.ORG Mon May 9 07:08:28 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E41BB106566C; Mon, 9 May 2011 07:08:28 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D6D568FC1E; Mon, 9 May 2011 07:08:28 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p4978S1Y080700; Mon, 9 May 2011 07:08:28 GMT (envelope-from avg@svn.freebsd.org) Received: (from avg@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p4978SQq080698; Mon, 9 May 2011 07:08:28 GMT (envelope-from avg@svn.freebsd.org) Message-Id: <201105090708.p4978SQq080698@svn.freebsd.org> From: Andriy Gapon Date: Mon, 9 May 2011 07:08:28 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r221681 - user/avg/xcpu/sys/kern X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 May 2011 07:08:29 -0000 Author: avg Date: Mon May 9 07:08:28 2011 New Revision: 221681 URL: http://svn.freebsd.org/changeset/base/221681 Log: some whitespace nits Modified: user/avg/xcpu/sys/kern/subr_smp.c Modified: user/avg/xcpu/sys/kern/subr_smp.c ============================================================================== --- user/avg/xcpu/sys/kern/subr_smp.c Mon May 9 07:07:18 2011 (r221680) +++ user/avg/xcpu/sys/kern/subr_smp.c Mon May 9 07:08:28 2011 (r221681) @@ -120,7 +120,7 @@ static volatile int smp_rv_waiters[3]; * Shared mutex to restrict busywaits between smp_rendezvous() and * smp(_targeted)_tlb_shootdown(). A deadlock occurs if both of these * functions trigger at once and cause multiple CPUs to busywait with - * interrupts disabled. + * interrupts disabled. */ struct mtx smp_ipi_mtx; @@ -281,7 +281,7 @@ suspend_cpus(cpumask_t map) #endif /* - * Called by a CPU to restart stopped CPUs. + * Called by a CPU to restart stopped CPUs. * * Usually (but not necessarily) called with 'stopped_cpus' as its arg. * @@ -389,7 +389,7 @@ unstop_cpus_hard(void) } /* - * All-CPU rendezvous. CPUs are signalled, all execute the setup function + * All-CPU rendezvous. CPUs are signalled, all execute the setup function * (if specified), rendezvous, execute the action function (if specified), * rendezvous again, execute the teardown function (if specified), and then * resume.