From: Stefan Hajnoczi <stefanha@redhat.com>
To: Eric Blake <eblake@redhat.com>
Cc: "Fam Zheng" <fam@euphon.net>,
"Peter Maydell" <peter.maydell@linaro.org>,
sheepdog@lists.wpkg.org, kvm@vger.kernel.org,
"David Hildenbrand" <david@redhat.com>,
"Jason Wang" <jasowang@redhat.com>,
qemu-devel@nongnu.org, "Michael Roth" <mdroth@linux.vnet.ibm.com>,
"Max Filippov" <jcmvbkbc@gmail.com>,
"Alistair Francis" <Alistair.Francis@wdc.com>,
"Gerd Hoffmann" <kraxel@redhat.com>,
"Huacai Chen" <chenhc@lemote.com>, "Jiri Slaby" <jslaby@suse.cz>,
"Stefano Stabellini" <sstabellini@kernel.org>,
"Alberto Garcia" <berto@igalia.com>,
"Sagar Karandikar" <sagark@eecs.berkeley.edu>,
"Yoshinori Sato" <ysato@users.sourceforge.jp>,
"Juan Quintela" <quintela@redhat.com>,
"Michael S. Tsirkin" <mst@redhat.com>,
"Markus Armbruster" <armbru@redhat.com>,
"Halil Pasic" <pasic@linux.ibm.com>,
"Christian Borntraeger" <borntraeger@de.ibm.com>,
"Aleksandar Markovic" <aleksandar.qemu.devel@gmail.com>,
"Thomas Huth" <thuth@redhat.com>,
"Marc-André Lureau" <marcandre.lureau@redhat.com>,
"Matthew Rosato" <mjrosato@linux.ibm.com>,
"Aleksandar Rikalo" <aleksandar.rikalo@syrmia.com>,
"Eduardo Habkost" <ehabkost@redhat.com>,
"Stefan Weil" <sw@weilnetz.de>, "Peter Lieven" <pl@kamp.de>,
"Dr. David Alan Gilbert" <dgilbert@redhat.com>,
"Yuval Shaia" <yuval.shaia.ml@gmail.com>,
"Paul Durrant" <paul@xen.org>,
"Anthony Perard" <anthony.perard@citrix.com>,
qemu-s390x@nongnu.org, qemu-arm@nongnu.org,
"Liu Yuan" <namei.unix@gmail.com>,
qemu-riscv@nongnu.org,
"Sunil Muthuswamy" <sunilmut@microsoft.com>,
"John Snow" <jsnow@redhat.com>,
"Hailiang Zhang" <zhang.zhanghailiang@huawei.com>,
"Richard Henderson" <rth@twiddle.net>,
"Kevin Wolf" <kwolf@redhat.com>,
"Daniel P. Berrangé" <berrange@redhat.com>,
qemu-block@nongnu.org,
"Bastian Koppelmann" <kbastian@mail.uni-paderborn.de>,
"Cornelia Huck" <cohuck@redhat.com>,
"Laurent Vivier" <laurent@vivier.eu>,
"Max Reitz" <mreitz@redhat.com>,
"Palmer Dabbelt" <palmer@dabbelt.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
xen-devel@lists.xenproject.org,
"Aurelien Jarno" <aurelien@aurel32.net>
Subject: Re: [PATCH] qemu/atomic.h: prefix qemu_ to solve <stdatomic.h> collisions
Date: Tue, 22 Sep 2020 10:05:13 +0100 [thread overview]
Message-ID: <20200922090513.GC201611@stefanha-x1.localdomain> (raw)
In-Reply-To: <1ce94412-7a01-9208-31b1-76b7562c3843@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 6223 bytes --]
On Mon, Sep 21, 2020 at 04:29:10PM -0500, Eric Blake wrote:
> On 9/21/20 11:23 AM, Stefan Hajnoczi wrote:
Thanks for the review! Your feedback prompted me to do this more
systematically. I fixed the command-lines and published a diff of just
the manual changes I made on top of the mechanical changes (see v2).
> > clang's C11 atomic_fetch_*() functions only take a C11 atomic type
> > pointer argument. QEMU uses direct types (int, etc) and this causes a
> > compiler error when a QEMU code calls these functions in a source file
> > that also included <stdatomic.h> via a system header file:
> >
> > $ CC=clang CXX=clang++ ./configure ... && make
> > ../util/async.c:79:17: error: address argument to atomic operation must be a pointer to _Atomic type ('unsigned int *' invalid)
> >
> > Avoid using atomic_*() names in QEMU's atomic.h since that namespace is
> > used by <stdatomic.h>. Prefix QEMU's APIs with qemu_ so that atomic.h
> > and <stdatomic.h> can co-exist.
> >
> > This patch was generated using:
> >
> > $ git diff | grep -o '\<atomic_[a-z0-9_]\+' | sort -u >/tmp/changed_identifiers
>
> Missing a step in the recipe: namely, you probably modified
> include/qemu/atomic*.h prior to running 'git diff' (so that you actually had
> input to feed to grep -o). But spelling it 'git diff HEAD^
> include/qemu/atomic*.h | ...' does indeed give me a sane list of identifiers
> that looks like what you touched in the rest of the patch.
Yes, I edited the file first and then used this command-line. The one
you posted it better :).
>
> > $ for identifier in $(</tmp/changed_identifiers64); do \
>
> Also not quite the right recipe, based on the file name used in the line
> above.
Yes, "64" is when I realized the original grep expression hadn't matched
the atomic64 APIs.
These commands only show the gist of it. It involved a few manual steps.
>
> > sed -i "s%\<$identifier\>%qemu_$identifier%" $(git grep -l "\<$identifier\>") \
> > done
> >
>
> Fortunately, running "git grep -c '\<atomic_[a-z0-9_]\+'" on the pre-patch
> state of the tree gives me a list that is somewhat close to yours, where the
> obvious difference in line counts is explained by:
>
> > I manually fixed line-wrap issues and misaligned rST tables.
> >
> > Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
> > ---
>
> First, focusing on the change summary:
>
> > docs/devel/lockcnt.txt | 14 +-
> > docs/devel/rcu.txt | 40 +--
> > accel/tcg/atomic_template.h | 20 +-
> > include/block/aio-wait.h | 4 +-
> > include/block/aio.h | 8 +-
> > include/exec/cpu_ldst.h | 2 +-
> > include/exec/exec-all.h | 6 +-
> > include/exec/log.h | 6 +-
> > include/exec/memory.h | 2 +-
> > include/exec/ram_addr.h | 27 +-
> > include/exec/ramlist.h | 2 +-
> > include/exec/tb-lookup.h | 4 +-
> > include/hw/core/cpu.h | 2 +-
> > include/qemu/atomic.h | 258 +++++++-------
> > include/qemu/atomic128.h | 6 +-
>
> These two are the most important for the sake of this patch; perhaps it's
> worth a temporary override of your git orderfile if you have to respin, to
> list them first?
Will do in v2.
>
> > include/qemu/bitops.h | 2 +-
> > include/qemu/coroutine.h | 2 +-
> > include/qemu/log.h | 6 +-
> > include/qemu/queue.h | 8 +-
> > include/qemu/rcu.h | 10 +-
> > include/qemu/rcu_queue.h | 103 +++---
>
> Presumably, this and any other file with an odd number of changes was due to
> a difference in lines after reformatting long lines.
Yes, line-wrapping required many changes in this file.
>
> > include/qemu/seqlock.h | 8 +-
> ...
>
> > util/stats64.c | 34 +-
> > docs/devel/atomics.rst | 326 +++++++++---------
> > .../opensbi-riscv32-generic-fw_dynamic.elf | Bin 558668 -> 558698 bytes
> > .../opensbi-riscv64-generic-fw_dynamic.elf | Bin 620424 -> 620454 bytes
>
> Why are we regenerating .elf files in this patch? Is your change even
> correct for those two files?
Thanks for noticing this! The git-grep(1) man page documents the -I
option for skipping binary files. I thought this was the default.
Will fix in v2.
>
> > scripts/kernel-doc | 2 +-
> > tcg/aarch64/tcg-target.c.inc | 2 +-
> > tcg/mips/tcg-target.c.inc | 2 +-
> > tcg/ppc/tcg-target.c.inc | 6 +-
> > tcg/sparc/tcg-target.c.inc | 5 +-
> > 135 files changed, 1195 insertions(+), 1130 deletions(-)
>
> I don't spot accel/tcg/atomic_common.c.inc in the list (which declares
> functions such as atomic_trace_rmw_pre) - I guess that's intentional based
> on how you tried to edit only the identifiers you touched in
> include/qemu/atomic*.h.
Yes. The namespace cleaning only applies to atomic.h. Any other part of
QEMU uses atomic_ is unaffected.
> > diff --git a/scripts/kernel-doc b/scripts/kernel-doc
> > index 030b5c8691..9ec38a1bf1 100755
> > --- a/scripts/kernel-doc
> > +++ b/scripts/kernel-doc
> > @@ -1625,7 +1625,7 @@ sub dump_function($$) {
> > # If you mess with these regexps, it's a good idea to check that
> > # the following functions' documentation still comes out right:
> > # - parport_register_device (function pointer parameters)
> > - # - atomic_set (macro)
> > + # - qemu_atomic_set (macro)
> > # - pci_match_device, __copy_to_user (long return type)
>
> Does the result of sphinx still look good, as mentioned in this comment?
Yes.
Stefan
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
next prev parent reply other threads:[~2020-09-22 9:17 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-09-21 16:23 [PATCH] qemu/atomic.h: prefix qemu_ to solve <stdatomic.h> collisions Stefan Hajnoczi
2020-09-21 20:56 ` no-reply
2020-09-22 8:17 ` Stefan Hajnoczi
2020-09-22 8:33 ` Philippe Mathieu-Daudé
2020-09-21 21:29 ` Eric Blake
2020-09-22 9:05 ` Stefan Hajnoczi [this message]
2020-09-22 6:27 ` Paolo Bonzini
2020-09-22 6:45 ` David Hildenbrand
2020-09-22 6:56 ` Paolo Bonzini
2020-09-22 7:45 ` David Hildenbrand
2020-09-22 8:18 ` Daniel P. Berrangé
2020-09-23 9:14 ` Stefan Hajnoczi
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=20200922090513.GC201611@stefanha-x1.localdomain \
--to=stefanha@redhat.com \
--cc=Alistair.Francis@wdc.com \
--cc=aleksandar.qemu.devel@gmail.com \
--cc=aleksandar.rikalo@syrmia.com \
--cc=anthony.perard@citrix.com \
--cc=armbru@redhat.com \
--cc=aurelien@aurel32.net \
--cc=berrange@redhat.com \
--cc=berto@igalia.com \
--cc=borntraeger@de.ibm.com \
--cc=chenhc@lemote.com \
--cc=cohuck@redhat.com \
--cc=david@redhat.com \
--cc=dgilbert@redhat.com \
--cc=eblake@redhat.com \
--cc=ehabkost@redhat.com \
--cc=fam@euphon.net \
--cc=jasowang@redhat.com \
--cc=jcmvbkbc@gmail.com \
--cc=jslaby@suse.cz \
--cc=jsnow@redhat.com \
--cc=kbastian@mail.uni-paderborn.de \
--cc=kraxel@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=kwolf@redhat.com \
--cc=laurent@vivier.eu \
--cc=marcandre.lureau@redhat.com \
--cc=mdroth@linux.vnet.ibm.com \
--cc=mjrosato@linux.ibm.com \
--cc=mreitz@redhat.com \
--cc=mst@redhat.com \
--cc=namei.unix@gmail.com \
--cc=palmer@dabbelt.com \
--cc=pasic@linux.ibm.com \
--cc=paul@xen.org \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=pl@kamp.de \
--cc=qemu-arm@nongnu.org \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-riscv@nongnu.org \
--cc=qemu-s390x@nongnu.org \
--cc=quintela@redhat.com \
--cc=rth@twiddle.net \
--cc=sagark@eecs.berkeley.edu \
--cc=sheepdog@lists.wpkg.org \
--cc=sstabellini@kernel.org \
--cc=sunilmut@microsoft.com \
--cc=sw@weilnetz.de \
--cc=thuth@redhat.com \
--cc=xen-devel@lists.xenproject.org \
--cc=ysato@users.sourceforge.jp \
--cc=yuval.shaia.ml@gmail.com \
--cc=zhang.zhanghailiang@huawei.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).