From: Duncan Sands Date: Tue, 30 Aug 2011 08:58:22 +0000 (+0200) Subject: KVM: Fix instruction size issue in pvclock scaling X-Git-Tag: v3.1-rc6~32^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3b217116edaac634bf31e85c35708298059a8171;p=pandora-kernel.git KVM: Fix instruction size issue in pvclock scaling Commit de2d1a524e94 ("KVM: Fix register corruption in pvclock_scale_delta") introduced a mul instruction that may have only a memory operand; the assembler therefore cannot select the correct size: pvclock.s:229: Error: no instruction mnemonic suffix given and no register operands; can't size instruction In this example the assembler is: #APP mul -48(%rbp) ; shrd $32, %rdx, %rax #NO_APP A simple solution is to use mulq. Signed-off-by: Duncan Sands Signed-off-by: Avi Kivity --- Reading git-diff-tree failed