commit 9ed0b290e9015ca33345aa7735defa67d2ee4eca Author: Oliver Pinter Date: Fri May 10 03:42:55 2013 +0200 fix stdext enumeration in identcpu the octal prefix must be octal number + 1 see Intel 319433-014 RDSEED: bit 18 -> in printf must be 19 -> \023 ADX: bit 19 -> 20 -> \024 SMAP: bit 20 -> 21 -> \025 Signed-off-by: Oliver Pinter diff --git a/sys/amd64/amd64/identcpu.c b/sys/amd64/amd64/identcpu.c index ec5a2aa..e63affc 100644 --- a/sys/amd64/amd64/identcpu.c +++ b/sys/amd64/amd64/identcpu.c @@ -407,11 +407,11 @@ printcpuinfo(void) /* Restricted Transactional Memory */ "\014RTM" /* Enhanced NRBG */ - "\022RDSEED" + "\023RDSEED" /* ADCX + ADOX */ - "\023ADX" + "\024ADX" /* Supervisor Mode Access Prevention */ - "\024SMAP" + "\025SMAP" ); }