cpucontrol: print more useful information when MSR access fails.

Instead of providing ioctl cmd value, which has no meaning to user,
print MSR number.  The later is what the user expects in this place
even.

Reported by:	pstef
Sponsored by:	The FreeBSD Foundation
MFC after:	3 days
This commit is contained in:
kib 2019-11-13 22:43:11 +00:00
parent 2d220d40d8
commit e0f7c88b6c

View File

@ -307,7 +307,7 @@ do_msr(const char *cmdarg, const char *dev)
}
error = ioctl(fd, command, &args);
if (error < 0) {
WARN(0, "ioctl(%s, CPUCTL_%s (%lu))", dev, command_name, command);
WARN(0, "ioctl(%s, CPUCTL_%s (%#x))", dev, command_name, msr);
close(fd);
return (1);
}