From owner-svn-src-all@FreeBSD.ORG Tue Dec 7 22:43:26 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B1831065695; Tue, 7 Dec 2010 22:43:26 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 015478FC14; Tue, 7 Dec 2010 22:43:26 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id oB7MhPhu082371; Tue, 7 Dec 2010 22:43:25 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id oB7MhP5L082366; Tue, 7 Dec 2010 22:43:25 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201012072243.oB7MhP5L082366@svn.freebsd.org> From: Jung-uk Kim Date: Tue, 7 Dec 2010 22:43:25 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r216276 - in head/sys: amd64/amd64 i386/i386 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Dec 2010 22:43:26 -0000 Author: jkim Date: Tue Dec 7 22:43:25 2010 New Revision: 216276 URL: http://svn.freebsd.org/changeset/base/216276 Log: Remove stale comments about P-state invariant TSC and fix style(9) nits. Modified: head/sys/amd64/amd64/identcpu.c head/sys/amd64/amd64/tsc.c head/sys/i386/i386/identcpu.c head/sys/i386/i386/tsc.c Modified: head/sys/amd64/amd64/identcpu.c ============================================================================== --- head/sys/amd64/amd64/identcpu.c Tue Dec 7 22:34:51 2010 (r216275) +++ head/sys/amd64/amd64/identcpu.c Tue Dec 7 22:43:25 2010 (r216276) @@ -437,10 +437,8 @@ panicifcpuunsupported(void) static void tsc_freq_changed(void *arg __unused, const struct cf_level *level, int status) { - /* - * If there was an error during the transition or - * TSC is P-state invariant, don't do anything. - */ + + /* If there was an error during the transition, don't do anything. */ if (status != 0) return; Modified: head/sys/amd64/amd64/tsc.c ============================================================================== --- head/sys/amd64/amd64/tsc.c Tue Dec 7 22:34:51 2010 (r216275) +++ head/sys/amd64/amd64/tsc.c Tue Dec 7 22:43:25 2010 (r216276) @@ -216,10 +216,8 @@ tsc_freq_changing(void *arg, const struc static void tsc_freq_changed(void *arg, const struct cf_level *level, int status) { - /* - * If there was an error during the transition or - * TSC is P-state invariant, don't do anything. - */ + + /* If there was an error during the transition, don't do anything. */ if (status != 0) return; Modified: head/sys/i386/i386/identcpu.c ============================================================================== --- head/sys/i386/i386/identcpu.c Tue Dec 7 22:34:51 2010 (r216275) +++ head/sys/i386/i386/identcpu.c Tue Dec 7 22:43:25 2010 (r216276) @@ -1053,10 +1053,8 @@ identifycyrix(void) static void tsc_freq_changed(void *arg __unused, const struct cf_level *level, int status) { - /* - * If there was an error during the transition or - * TSC is P-state invariant, don't do anything. - */ + + /* If there was an error during the transition, don't do anything. */ if (status != 0) return; Modified: head/sys/i386/i386/tsc.c ============================================================================== --- head/sys/i386/i386/tsc.c Tue Dec 7 22:34:51 2010 (r216275) +++ head/sys/i386/i386/tsc.c Tue Dec 7 22:43:25 2010 (r216276) @@ -244,10 +244,8 @@ tsc_freq_changing(void *arg, const struc static void tsc_freq_changed(void *arg, const struct cf_level *level, int status) { - /* - * If there was an error during the transition or - * TSC is P-state invariant, don't do anything. - */ + + /* If there was an error during the transition, don't do anything. */ if (status != 0) return;