Date: Thu, 5 Nov 2009 14:34:38 +0000 (UTC) From: Attilio Rao <attilio@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r198950 - in head/sys: amd64/amd64 i386/i386 Message-ID: <200911051434.nA5EYcCV080800@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200911051434.nA5EYcCV080800>