From: Peter Xu <peterx@redhat.com>
To: BALATON Zoltan <balaton@eik.bme.hu>
Cc: "Akihiko Odaki" <akihiko.odaki@daynix.com>,
"Eduardo Habkost" <eduardo@habkost.net>,
"Marcel Apfelbaum" <marcel.apfelbaum@gmail.com>,
"Philippe Mathieu-Daudé" <philmd@linaro.org>,
"Yanan Wang" <wangyanan55@huawei.com>,
"John Snow" <jsnow@redhat.com>,
"Jiaxun Yang" <jiaxun.yang@flygoat.com>,
"Nicholas Piggin" <npiggin@gmail.com>,
"Daniel Henrique Barboza" <danielhb413@gmail.com>,
"David Gibson" <david@gibson.dropbear.id.au>,
"Harsh Prateek Bora" <harshpb@linux.ibm.com>,
"Alexey Kardashevskiy" <aik@ozlabs.ru>,
"Michael S. Tsirkin" <mst@redhat.com>,
"Alex Bennée" <alex.bennee@linaro.org>,
"Fabiano Rosas" <farosas@suse.de>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"David Hildenbrand" <david@redhat.com>,
"Thomas Huth" <thuth@redhat.com>,
"Laurent Vivier" <lvivier@redhat.com>,
"Peter Maydell" <peter.maydell@linaro.org>,
qemu-devel@nongnu.org, qemu-block@nongnu.org,
qemu-ppc@nongnu.org, devel@daynix.com
Subject: Re: [PATCH v7 1/2] memory: Update inline documentation
Date: Thu, 9 Jan 2025 14:37:24 -0500 [thread overview]
Message-ID: <Z4AldAcucTyqZ0HJ@x1n> (raw)
In-Reply-To: <Z4AjkXbZeu3T94Y1@x1n>
On Thu, Jan 09, 2025 at 02:29:21PM -0500, Peter Xu wrote:
> On Thu, Jan 09, 2025 at 01:30:35PM +0100, BALATON Zoltan wrote:
> > On Thu, 9 Jan 2025, Akihiko Odaki wrote:
> > > Do not refer to "memory region's reference count"
> > > -------------------------------------------------
> > >
> > > Now MemoryRegions do have their own reference counts, but they will not
> > > be used when their owners are not themselves. However, the documentation
> > > of memory_region_ref() says it adds "1 to a memory region's reference
> > > count", which is confusing. Avoid referring to "memory region's
> > > reference count" and just say: "Add a reference to a memory region".
> > > Make a similar change to memory_region_unref() too.
> > >
> > > Refer to docs/devel/memory.rst for "owner"
> > > ------------------------------------------
> > >
> > > memory_region_ref() and memory_region_unref() used to have their own
> > > descriptions of "owner", but they are somewhat out-of-date and
> > > misleading.
> > >
> > > In particular, they say "whenever memory regions are accessed outside
> > > the BQL, they need to be preserved against hot-unplug", but protecting
> > > against hot-unplug is not mandatory if it is known that they will never
> > > be hot-unplugged. They also say "MemoryRegions actually do not have
> > > their own reference count", but they actually do. They just will not be
> > > used unless their owners are not themselves.
> > >
> > > Refer to docs/devel/memory.rst as the single source of truth instead of
> > > maintaining duplicate descriptions of "owner".
> > >
> > > Clarify that owner may be missing
> > >
> > > ---------------------------------
> > > A memory region may not have an owner, and memory_region_ref() and
> > > memory_region_unref() do nothing for such.
> > >
> > > memory: Clarify owner must not call memory_region_ref()
> > > --------------------------------------------------------
> > >
> > > The owner must not call this function as it results in a circular
> > > reference.
> > >
> > > Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
> > > Reviewed-by: Peter Xu <peterx@redhat.com>
> > > ---
> > > include/exec/memory.h | 59 ++++++++++++++++++++++++---------------------------
> > > 1 file changed, 28 insertions(+), 31 deletions(-)
> > >
> > > diff --git a/include/exec/memory.h b/include/exec/memory.h
> > > index 9458e2801d50..ca247343f433 100644
> > > --- a/include/exec/memory.h
> > > +++ b/include/exec/memory.h
> > > @@ -1210,7 +1210,7 @@ void memory_region_section_free_copy(MemoryRegionSection *s);
> > > * memory_region_add_subregion() to add subregions.
> > > *
> > > * @mr: the #MemoryRegion to be initialized
> > > - * @owner: the object that tracks the region's reference count
> > > + * @owner: the object that keeps the region alive
> > > * @name: used for debugging; not visible to the user or ABI
> > > * @size: size of the region; any subregions beyond this size will be clipped
> > > */
> > > @@ -1220,29 +1220,26 @@ void memory_region_init(MemoryRegion *mr,
> > > uint64_t size);
> > >
> > > /**
> > > - * memory_region_ref: Add 1 to a memory region's reference count
> > > + * memory_region_ref: Add a reference to the owner of a memory region
> > > *
> > > - * Whenever memory regions are accessed outside the BQL, they need to be
> > > - * preserved against hot-unplug. MemoryRegions actually do not have their
> > > - * own reference count; they piggyback on a QOM object, their "owner".
> > > - * This function adds a reference to the owner.
> > > - *
> > > - * All MemoryRegions must have an owner if they can disappear, even if the
> > > - * device they belong to operates exclusively under the BQL. This is because
> > > - * the region could be returned at any time by memory_region_find, and this
> > > - * is usually under guest control.
> > > + * This function adds a reference to the owner of a memory region to keep the
> > > + * memory region alive. It does nothing if the owner is not present as a memory
> > > + * region without owner will never die.
> > > + * For references internal to the owner, use object_ref() instead to avoid a
> > > + * circular reference.
> >
> > Reading this again I'm still confused by this last sentence. Do you mean
> > references internal to the memory region should use object_ref on the memory
> > region or that other references to the owner should use object_ref on the
> > owner? This sentence is still not clear about that.
>
> Having two refcounts are definitely confusing.. especially IIRC all MRs'
> obj->free==NULL, so the MR's refcount isn't working. Dynamic MR's needs
> its g_free() on its own.
>
> I acked both patches, but maybe it could indeed be slightly better we drop
> this sentence, meanwhile in patch 2 we can drop the object_ref() too: it
> means for parent/child MRs that share the same owner, QEMU does nothing on
> the child MRs when add subregion, because it assumes the child MR will
> never go away when the parent is there who shares the owner.
>
> So maybe we try not to touch MR's refcount manually, but fix what can be
> problematic for owner->ref only.
As an attached comment: I may have forgot some context on this issue, but I
still remember I used to have a patch that simply detach either parent or
child MR links when finalize(). It's here:
https://lore.kernel.org/all/ZsenKpu1czQGYz7m@x1n/
I see this issue was there for a long time so maybe we want to fix it one
way or another. I don't strongly feel which way to go, but personally I
still prefer that way (I assume that can fix the same issue), and it
doesn't have MR's refcount involved at all, meanwhile I don't see an issue
yet with it..
--
Peter Xu
next prev parent reply other threads:[~2025-01-09 19:38 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-09 5:50 [PATCH v7 0/2] Fix check-qtest-ppc64 sanitizer errors Akihiko Odaki
2025-01-09 5:50 ` [PATCH v7 1/2] memory: Update inline documentation Akihiko Odaki
2025-01-09 12:30 ` BALATON Zoltan
2025-01-09 19:29 ` Peter Xu
2025-01-09 19:37 ` Peter Xu [this message]
2025-01-10 8:43 ` Akihiko Odaki
2025-01-10 15:18 ` Peter Xu
2025-01-11 4:15 ` Akihiko Odaki
2025-01-13 15:57 ` Peter Xu
2025-01-14 8:43 ` Akihiko Odaki
2025-01-14 17:02 ` Peter Xu
2025-01-14 17:42 ` Peter Maydell
2025-01-14 19:12 ` Peter Xu
2025-01-16 14:50 ` Peter Maydell
2025-01-16 16:13 ` BALATON Zoltan
2025-01-17 6:19 ` Akihiko Odaki
2025-08-28 10:11 ` Peter Maydell
2025-08-28 13:17 ` Alex Bennée
2025-08-28 16:10 ` Peter Xu
2025-01-16 16:40 ` Peter Xu
2025-01-15 4:46 ` Akihiko Odaki
2025-01-15 13:43 ` Peter Xu
2025-01-15 14:54 ` Akihiko Odaki
2025-01-15 15:40 ` Peter Xu
2025-01-15 15:52 ` Akihiko Odaki
2025-01-15 16:14 ` Peter Xu
2025-01-16 5:37 ` Akihiko Odaki
2025-01-16 14:33 ` Peter Xu
2025-01-17 6:24 ` Akihiko Odaki
2025-01-17 17:46 ` Peter Xu
2025-01-18 10:15 ` Akihiko Odaki
2025-01-18 12:49 ` Peter Xu
2025-01-09 5:50 ` [PATCH v7 2/2] memory: Do not create circular reference with subregion Akihiko Odaki
2025-01-09 15:55 ` Peter Xu
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=Z4AldAcucTyqZ0HJ@x1n \
--to=peterx@redhat.com \
--cc=aik@ozlabs.ru \
--cc=akihiko.odaki@daynix.com \
--cc=alex.bennee@linaro.org \
--cc=balaton@eik.bme.hu \
--cc=danielhb413@gmail.com \
--cc=david@gibson.dropbear.id.au \
--cc=david@redhat.com \
--cc=devel@daynix.com \
--cc=eduardo@habkost.net \
--cc=farosas@suse.de \
--cc=harshpb@linux.ibm.com \
--cc=jiaxun.yang@flygoat.com \
--cc=jsnow@redhat.com \
--cc=lvivier@redhat.com \
--cc=marcel.apfelbaum@gmail.com \
--cc=mst@redhat.com \
--cc=npiggin@gmail.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=philmd@linaro.org \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=thuth@redhat.com \
--cc=wangyanan55@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).