From: Henne Vogelsang Date: Mon, 1 Mar 2010 10:35:54 +0000 (+0100) Subject: lscpu: fix cpuid opcode detection X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc54770d9e25aa8732f571d97dd950982114dc08;p=util-linux lscpu: fix cpuid opcode detection Fixes commit c9239f23acdc8b50f8bcbfadf967c6a490fd4693. The author didn't care for matching constraints when resorting the register constraints. The eax register (with the cpuid opcode) is now in operand 1, not zero anymore. Signed-off-by: Henne Vogelsang --- diff --git a/sys-utils/lscpu.c b/sys-utils/lscpu.c index c200fb32..77a3e5c2 100644 --- a/sys-utils/lscpu.c +++ b/sys-utils/lscpu.c @@ -360,7 +360,7 @@ cpuid(unsigned int op, unsigned int *eax, unsigned int *ebx, "=a" (*eax), "=c" (*ecx), "=d" (*edx) - : "0" (op), "c"(0)); + : "1" (op), "c"(0)); } static void