Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 11 Feb 1999 12:00:01 -0800 (PST)
From:      Kevin Day <toasty@home.dragondata.com>
To:        freebsd-bugs@FreeBSD.ORG
Subject:   Re: kern/10022: kernel cannot detect WinChips correctly.
Message-ID:  <199902112000.MAA98227@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR kern/10022; it has been noted by GNATS.

From: Kevin Day <toasty@home.dragondata.com>
To: mrt@notwork.org
Cc: FreeBSD-gnats-submit@FreeBSD.ORG
Subject: Re: kern/10022: kernel cannot detect WinChips correctly.
Date: Thu, 11 Feb 1999 13:52:21 -0600 (CST)

 Completely unrelated to this, but i just saw this line... Isn't this a bug?
 
 
 > @@ -508,7 +519,8 @@
 >  	if (strcmp(cpu_vendor, "GenuineIntel") == 0 ||
 >  	    strcmp(cpu_vendor, "AuthenticAMD") == 0 ||
 >  		((strcmp(cpu_vendor, "CyrixInstead") == 0) &&
 > 		 ((cpu_id & 0xf00) > 5))) {
 >  		printf("  Stepping=%u", cpu_id & 0xf);
 >  		if (strcmp(cpu_vendor, "CyrixInstead") == 0)
 >  			printf("  DIR=0x%04x", cyrix_did);
 
 
 Shouldn't that be:
 
  		 ((cpu_id & 0xf00) > 0x500))) {
 
 Or really anything but what is there? Or am I still asleep today?
 
 
 Kevin
 
 
 
 
 
 

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199902112000.MAA98227>