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:
parent
2d220d40d8
commit
e0f7c88b6c
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user