From: David Gibson <david@gibson.dropbear.id.au>
To: Andrey Smirnov <andrew.smirnov@gmail.com>
Cc: Peter Maydell <peter.maydell@linaro.org>,
QEMU Developers <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH 6/9] Convert cpu_memory_rw_debug to use MMUAccessType
Date: Wed, 13 Jul 2016 10:54:59 +1000 [thread overview]
Message-ID: <20160713005459.GA14615@voom.fritz.box> (raw)
In-Reply-To: <CAHQ1cqGG2bQc9yBOEN37X=e0pwgdzAFu-htGBh1Jy+Pqeqr89Q@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2842 bytes --]
On Tue, Jul 12, 2016 at 09:05:24AM -0700, Andrey Smirnov wrote:
> On Mon, Jul 11, 2016 at 10:27 PM, David Gibson
> <david@gibson.dropbear.id.au> wrote:
> > On Mon, Jul 11, 2016 at 05:27:50PM +0100, Peter Maydell wrote:
> >> On 11 July 2016 at 03:24, David Gibson <david@gibson.dropbear.id.au> wrote:
> >> > On Sun, Jul 10, 2016 at 08:32:32PM +0100, Peter Maydell wrote:
> >> >> On 8 July 2016 at 04:42, David Gibson <david@gibson.dropbear.id.au> wrote:
> >> >> > My only concern here is that the constants are named
> >> >> > *MMU*_DATA_... whereas these are physical memory accesses not
> >> >> > involving the MMU. I can't actually see any current users of
> >> >> > MMUAccessType which makes me a bit confused as to what it's intended
> >> >> > meaning was
> >> >>
> >> >> If you grep for MMU_DATA_LOAD/MMU_DATA_STORE/MMU_INST_FETCH
> >> >> you'll see the uses. A lot of the softmmu code uses the
> >> >> convention of 0=read,1=write,2=insn (which developed I
> >> >> think historically from a bool "is_write", which you'll
> >> >> still see in some function argument names, that was
> >> >> augmented to handle insn-fetch separately). The enum
> >> >> gives us some symbolic names for the constant values.
> >> >> (There's a proposed patch somewhere to change the
> >> >> 'int is_write' arguments to actually use the enum type.)
> >> >
> >> > Ah, yes, I see. Still surprisingly few, actually.
> >>
> >> Yeah, we didn't go through (yet) and update the legacy code,
> >> just provided the common type so new code could use it.
> >
> > Ah, yes, I see.
> >
> >> > My concern about the potentially misleading name still stands.
> >>
> >> I don't mind if we want to rename it, but I don't think we want
> >> to have two types. This is all in the softmmu code, whether it's
> >> in the physical-address parts or the virtual-address parts.
> >
> > Right, I agree we shouldn't have two types.
> >
> > I think we should rename the existing constants, though, since it
> > doesn't really have anything to do with the MMU.
> >
>
> I agree with your concern about confusing naming, David, and think
> those should be renamed as well. In the original version of this patch
> I introduced my own enumeration which was duplication MMUAccessType,
> so in his feedback Peter asked me to use MMUAccessType instead.
>
> Please let me know how I should proceed with this series.
My preference would be to start the series with something which
renames MMUAccessType and its individual values to something more
generic, including changing the existing users.
But I can't speak to what Peter would prefer.
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2016-07-13 0:53 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1467934423-5997-1-git-send-email-andrew.smirnov@gmail.com>
[not found] ` <1467934423-5997-2-git-send-email-andrew.smirnov@gmail.com>
2016-07-08 3:27 ` [Qemu-devel] [PATCH 1/9] Avoid needless calls to address_space_rw() David Gibson
[not found] ` <1467934423-5997-3-git-send-email-andrew.smirnov@gmail.com>
2016-07-08 3:33 ` [Qemu-devel] [PATCH 2/9] Change signature of address_space_read() to avoid casting David Gibson
[not found] ` <1467934423-5997-4-git-send-email-andrew.smirnov@gmail.com>
2016-07-08 3:34 ` [Qemu-devel] [PATCH 3/9] Change signature of address_space_write() " David Gibson
[not found] ` <1467934423-5997-5-git-send-email-andrew.smirnov@gmail.com>
2016-07-08 3:38 ` [Qemu-devel] [PATCH 4/9] address_space_write_continue: Distill common code David Gibson
2016-07-12 15:28 ` Andrey Smirnov
2016-07-12 15:41 ` Peter Maydell
2016-07-12 16:09 ` Andrey Smirnov
[not found] ` <1467934423-5997-6-git-send-email-andrew.smirnov@gmail.com>
2016-07-08 3:39 ` [Qemu-devel] [PATCH 5/9] Change signature of cpu_memory_rw_debug() to avoid casting David Gibson
[not found] ` <1467934423-5997-7-git-send-email-andrew.smirnov@gmail.com>
2016-07-08 3:42 ` [Qemu-devel] [PATCH 6/9] Convert cpu_memory_rw_debug to use MMUAccessType David Gibson
2016-07-10 19:32 ` Peter Maydell
2016-07-11 2:24 ` David Gibson
2016-07-11 16:27 ` Peter Maydell
2016-07-12 5:27 ` David Gibson
2016-07-12 16:05 ` Andrey Smirnov
2016-07-13 0:54 ` David Gibson [this message]
2016-07-13 9:52 ` Peter Maydell
2016-07-13 17:09 ` Andrey Smirnov
[not found] ` <1467934423-5997-8-git-send-email-andrew.smirnov@gmail.com>
2016-07-08 3:45 ` [Qemu-devel] [PATCH 7/9] Convert address_space_rw " David Gibson
2016-07-12 15:41 ` Andrey Smirnov
[not found] ` <1467934423-5997-9-git-send-email-andrew.smirnov@gmail.com>
2016-07-08 3:46 ` [Qemu-devel] [PATCH 8/9] gdbstub: Convert target_memory_rw_debug " David Gibson
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=20160713005459.GA14615@voom.fritz.box \
--to=david@gibson.dropbear.id.au \
--cc=andrew.smirnov@gmail.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.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 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).