From: Keir Fraser <keir@xen.org>
To: Jan Beulich <JBeulich@suse.com>, xen-devel <xen-devel@lists.xen.org>
Subject: Re: [PATCH] x86/time: fix scale_delta() inline assembly
Date: Mon, 26 Nov 2012 16:10:53 +0000 [thread overview]
Message-ID: <CCD9450D.53691%keir@xen.org> (raw)
In-Reply-To: <50B3978F02000078000AB3A3@nat28.tlf.novell.com>
On 26/11/2012 15:23, "Jan Beulich" <JBeulich@suse.com> wrote:
> The way it was coded, it clobbered %rdx without telling the compiler.
> This generally didn't cause any problems except when there are two back
> to back invocations (as in plt_overflow()), as in that case the
> compiler may validly assume that it can re-use for the second instance
> the value loaded into %rdx before the first one.
>
> Once at it, also properly relax the second operand of "mul" (there's no
> need for it to be in %rdx, or a register at all), and switch away from
> using explicit register names in the instruction operands.
>
> Signed-off-by: Jan Beulich <jbeulich@suse.com>
Ugh. Thank you very much, Jan! What a horrible bug.
Acked-by: Keir Fraser <keir@xen.org>
> --- a/xen/arch/x86/time.c
> +++ b/xen/arch/x86/time.c
> @@ -127,8 +127,9 @@ static inline u64 scale_delta(u64 delta,
> delta <<= scale->shift;
>
> asm (
> - "mul %%rdx ; shrd $32,%%rdx,%%rax"
> - : "=a" (product) : "0" (delta), "d" ((u64)scale->mul_frac) );
> + "mul %2 ; shrd $32,%1,%0"
> + : "=a" (product), "=d" (delta)
> + : "rm" (delta), "0" ((u64)scale->mul_frac) );
>
> return product;
> }
>
>
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xen.org
> http://lists.xen.org/xen-devel
next prev parent reply other threads:[~2012-11-26 16:10 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-11-26 15:23 [PATCH] x86/time: fix scale_delta() inline assembly Jan Beulich
2012-11-26 16:10 ` Keir Fraser [this message]
2012-11-26 16:43 ` Dan Magenheimer
2012-11-26 16:51 ` Sylvain Munaut
2012-11-26 16:59 ` Mats Petersson
2012-11-26 17:03 ` Jan Beulich
2012-11-26 17:12 ` Dan Magenheimer
2012-11-26 19:23 ` Keir Fraser
2012-11-26 16:53 ` Jan Beulich
2012-11-26 16:31 ` Ian Campbell
2012-11-26 16:43 ` Jan Beulich
2012-11-26 17:12 ` Ian Campbell
2012-11-26 19:22 ` Keir Fraser
2012-11-26 16:50 ` Mats Petersson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CCD9450D.53691%keir@xen.org \
--to=keir@xen.org \
--cc=JBeulich@suse.com \
--cc=xen-devel@lists.xen.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.