mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
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:
parent
82d9b14e16
commit
b19bfd3db5
1 changed files with 2 additions and 2 deletions
|
|
@ -222,9 +222,9 @@ linprocfs_docpuinfo(PFS_FILL_ARGS)
|
|||
default:
|
||||
class = 0;
|
||||
break;
|
||||
#else
|
||||
#else /* __amd64__ */
|
||||
default:
|
||||
class = 6;
|
||||
class = 15;
|
||||
break;
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue