summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorattilio <attilio@FreeBSD.org>2009-11-05 14:34:38 +0000
committerattilio <attilio@FreeBSD.org>2009-11-05 14:34:38 +0000
commite0f4684a1b58ce80a11cc0eeeb1a2707fd80ed66 (patch)
tree051c0e04d8f2087f1a104dd1e8930ad5cc6fa66b
parent8885a01eb6deafae8d45dd4789142734e9403b78 (diff)
downloadFreeBSD-src-e0f4684a1b58ce80a11cc0eeeb1a2707fd80ed66.zip
FreeBSD-src-e0f4684a1b58ce80a11cc0eeeb1a2707fd80ed66.tar.gz
Strip from messages for users external URLs the project cannot directly
control. Requested by: kib, rwatson
-rw-r--r--sys/amd64/amd64/identcpu.c5
-rw-r--r--sys/i386/i386/identcpu.c5
2 files changed, 2 insertions, 8 deletions
diff --git a/sys/amd64/amd64/identcpu.c b/sys/amd64/amd64/identcpu.c
index b50c29b..420dd03 100644
--- a/sys/amd64/amd64/identcpu.c
+++ b/sys/amd64/amd64/identcpu.c
@@ -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
diff --git a/sys/i386/i386/identcpu.c b/sys/i386/i386/identcpu.c
index e8210c2..b0bcd09 100644
--- a/sys/i386/i386/identcpu.c
+++ b/sys/i386/i386/identcpu.c
@@ -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
OpenPOWER on IntegriCloud