As far as I can tell, the correct CPU family for amd64 (which Linux calls

x86_64) is 15, not 6.

MFC after:	3 weeks
This commit is contained in:
Dag-Erling Smørgrav 2006-06-02 13:01:25 +00:00
parent 82d9b14e16
commit b19bfd3db5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=159170

View file

@ -222,9 +222,9 @@ linprocfs_docpuinfo(PFS_FILL_ARGS)
default:
class = 0;
break;
#else
#else /* __amd64__ */
default:
class = 6;
class = 15;
break;
#endif
}