Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1422968

Re: [PATCH] pvclock: introduce seqcount-like API

From Paolo Bonzini <pbonzini@redhat.com>
Newsgroups linux.kernel
Subject Re: [PATCH] pvclock: introduce seqcount-like API
Date 2016-06-15 14:20 +0200
Message-ID <rKhXA-2q2-17@gated-at.bofh.it> (permalink)
References (3 earlier) <rI8lI-6YM-21@gated-at.bofh.it> <rI8vo-72W-29@gated-at.bofh.it> <rIbMB-Wg-3@gated-at.bofh.it> <rIcz0-1vR-33@gated-at.bofh.it> <rIcz0-1vR-31@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw



On 09/06/2016 20:08, Andy Lutomirski wrote:
> > __pvclock_read_cycles is pretty much the same as the code that is being
> > inlined.  Thus the only change is that __pvclock_read_cycles is called
> > inside the loop rather than outside, but the loop really is expected to
> > never roll so why make a copy in the first place?
>
> I feel like I had a reason, but I don't remember what it was.

I cannot see any substantial difference in the generated code with
this patch.  On the other hand, if I add this:

diff --git a/arch/x86/include/asm/pvclock.h b/arch/x86/include/asm/pvclock.h
index 0ee92db1e9f3..d019f0cc80ec 100644
--- a/arch/x86/include/asm/pvclock.h
+++ b/arch/x86/include/asm/pvclock.h
@@ -40,7 +40,7 @@ bool pvclock_read_retry(const struct pvclock_vcpu_time_info *src,
 {
 	/* Make sure that the version is re-read after the data. */
 	virt_rmb();
-	return version != src->version;
+	return unlikely(version != src->version);
 }
 
 /*

then vread_pvclock is inlined everywhere, which bloats the code somewhat (+80
code bytes).  Do you want me to mark vread_pvclock as noinline too?

Paolo

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

Re: [PATCH] pvclock: introduce seqcount-like API Paolo Bonzini <pbonzini@redhat.com> - 2016-06-15 14:20 +0200

csiph-web