From owner-svn-src-all@FreeBSD.ORG Thu Nov 5 14:34:40 2009 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 1093F1065670; Thu, 5 Nov 2009 14:34:40 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F3BB98FC13; Thu, 5 Nov 2009 14:34:39 +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 nA5EYctQ080803; Thu, 5 Nov 2009 14:34:38 GMT (envelope-from attilio@svn.freebsd.org) Received: (from attilio@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id nA5EYcCV080800; Thu, 5 Nov 2009 14:34:38 GMT (envelope-from attilio@svn.freebsd.org) Message-Id: <200911051434.nA5EYcCV080800@svn.freebsd.org> From: Attilio Rao Date: Thu, 5 Nov 2009 14:34:38 +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: r198950 - 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: Thu, 05 Nov 2009 14:34:40 -0000 Author: attilio Date: Thu Nov 5 14:34:38 2009 New Revision: 198950 URL: http://svn.freebsd.org/changeset/base/198950 Log: Strip from messages for users external URLs the project cannot directly control. Requested by: kib, rwatson Modified: head/sys/amd64/amd64/identcpu.c head/sys/i386/i386/identcpu.c Modified: head/sys/amd64/amd64/identcpu.c ============================================================================== --- head/sys/amd64/amd64/identcpu.c Thu Nov 5 13:54:35 2009 (r198949) +++ head/sys/amd64/amd64/identcpu.c Thu Nov 5 14:34:38 2009 (r198950) @@ -619,12 +619,9 @@ print_AMD_info(void) * model and family are identified. */ if (CPUID_TO_FAMILY(cpu_id) == 0xf && CPUID_TO_MODEL(cpu_id) >= 0x20 && - CPUID_TO_MODEL(cpu_id) <= 0x3f) { + CPUID_TO_MODEL(cpu_id) <= 0x3f) printf("WARNING: This architecture revision has known SMP " "hardware bugs which may cause random instability\n"); - printf("WARNING: For details see: " - "http://bugzilla.kernel.org/show_bug.cgi?id=11305\n"); - } } static void Modified: head/sys/i386/i386/identcpu.c ============================================================================== --- head/sys/i386/i386/identcpu.c Thu Nov 5 13:54:35 2009 (r198949) +++ head/sys/i386/i386/identcpu.c Thu Nov 5 14:34:38 2009 (r198950) @@ -1315,12 +1315,9 @@ print_AMD_info(void) * model and family are identified. */ if (CPUID_TO_FAMILY(cpu_id) == 0xf && CPUID_TO_MODEL(cpu_id) >= 0x20 && - CPUID_TO_MODEL(cpu_id) <= 0x3f) { + CPUID_TO_MODEL(cpu_id) <= 0x3f) printf("WARNING: This architecture revision has known SMP " "hardware bugs which may cause random instability\n"); - printf("WARNING: For details see: " - "http://bugzilla.kernel.org/show_bug.cgi?id=11305\n"); - } } static void