From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
Subject: [Qemu-devel] [PULL 01/18] memory_region: Fix name comments
Date: Tue, 14 Mar 2017 17:18:03 +0100 [thread overview]
Message-ID: <1489508300-48184-2-git-send-email-pbonzini@redhat.com> (raw)
In-Reply-To: <1489508300-48184-1-git-send-email-pbonzini@redhat.com>
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
The 'name' parameter to memory_region_init_* had been marked as debug
only, however vmstate_region_ram uses it as a parameter to
qemu_ram_set_idstr to set RAMBlock names and these form part of the
migration stream.
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Message-Id: <20170309152708.30635-1-dgilbert@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
include/exec/memory.h | 18 ++++++++++++------
1 file changed, 12 insertions(+), 6 deletions(-)
diff --git a/include/exec/memory.h b/include/exec/memory.h
index 6911023..e39256a 100644
--- a/include/exec/memory.h
+++ b/include/exec/memory.h
@@ -371,7 +371,8 @@ void memory_region_init_io(MemoryRegion *mr,
*
* @mr: the #MemoryRegion to be initialized.
* @owner: the object that tracks the region's reference count
- * @name: the name of the region.
+ * @name: Region name, becomes part of RAMBlock name used in migration stream
+ * must be unique within any device
* @size: size of the region.
* @errp: pointer to Error*, to store an error if it happens.
*/
@@ -390,7 +391,8 @@ void memory_region_init_ram(MemoryRegion *mr,
*
* @mr: the #MemoryRegion to be initialized.
* @owner: the object that tracks the region's reference count
- * @name: the name of the region.
+ * @name: Region name, becomes part of RAMBlock name used in migration stream
+ * must be unique within any device
* @size: used size of the region.
* @max_size: max size of the region.
* @resized: callback to notify owner about used size change.
@@ -412,7 +414,8 @@ void memory_region_init_resizeable_ram(MemoryRegion *mr,
*
* @mr: the #MemoryRegion to be initialized.
* @owner: the object that tracks the region's reference count
- * @name: the name of the region.
+ * @name: Region name, becomes part of RAMBlock name used in migration stream
+ * must be unique within any device
* @size: size of the region.
* @share: %true if memory must be mmaped with the MAP_SHARED flag
* @path: the path in which to allocate the RAM.
@@ -434,7 +437,8 @@ void memory_region_init_ram_from_file(MemoryRegion *mr,
*
* @mr: the #MemoryRegion to be initialized.
* @owner: the object that tracks the region's reference count
- * @name: the name of the region.
+ * @name: Region name, becomes part of RAMBlock name used in migration stream
+ * must be unique within any device
* @size: size of the region.
* @ptr: memory to be mapped; must contain at least @size bytes.
*/
@@ -496,7 +500,8 @@ void memory_region_init_alias(MemoryRegion *mr,
*
* @mr: the #MemoryRegion to be initialized.
* @owner: the object that tracks the region's reference count
- * @name: the name of the region.
+ * @name: Region name, becomes part of RAMBlock name used in migration stream
+ * must be unique within any device
* @size: size of the region.
* @errp: pointer to Error*, to store an error if it happens.
*/
@@ -513,7 +518,8 @@ void memory_region_init_rom(MemoryRegion *mr,
* @mr: the #MemoryRegion to be initialized.
* @owner: the object that tracks the region's reference count
* @ops: callbacks for write access handling (must not be NULL).
- * @name: the name of the region.
+ * @name: Region name, becomes part of RAMBlock name used in migration stream
+ * must be unique within any device
* @size: size of the region.
* @errp: pointer to Error*, to store an error if it happens.
*/
--
1.8.3.1
next prev parent reply other threads:[~2017-03-14 16:18 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-14 16:18 [Qemu-devel] [PULL 00/18] Misc patches for QEMU 2.9 hard freeze Paolo Bonzini
2017-03-14 16:18 ` Paolo Bonzini [this message]
2017-03-14 16:18 ` [Qemu-devel] [PULL 02/18] docs: Add a note about mixing bootindex with "-boot order" Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 03/18] mem-prealloc: reduce large guest start-up and migration time Paolo Bonzini
2017-03-18 13:58 ` Peter Maydell
2017-03-21 6:50 ` Jitendra Kolhe
2017-03-14 16:18 ` [Qemu-devel] [PULL 04/18] exec: add cpu_synchronize_state to cpu_memory_rw_debug Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 05/18] kvm: Print MSR information if KVM_{GET, SET}_MSRS failed Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 06/18] kvmclock: Don't crash QEMU if KVM is disabled Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 07/18] scripts/dump-guest-memory.py: fix int128_get64 on recent gcc Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 08/18] configure: add the missing help output for optional features Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 09/18] util: Removed unneeded header from path.c Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 10/18] scsi: mptsas: fix the wrong reading size in fetch request Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 11/18] target/nios2: take BQL around interrupt check Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 12/18] qemu-timer: fix off-by-one Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 13/18] qemu-timer: do not include sysemu/cpus.h from util/qemu-timer.h Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 14/18] cpus: define QEMUTimerListNotifyCB for QEMU system emulation Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 15/18] main-loop: remove now unnecessary optimization Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 16/18] icount: process QEMU_CLOCK_VIRTUAL timers in vCPU thread Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 17/18] memory: info mtree check mr range overflow Paolo Bonzini
2017-03-14 16:18 ` [Qemu-devel] [PULL 18/18] nbd/client: fix drop_sync [CVE-2017-2630] Paolo Bonzini
2017-03-14 17:09 ` Eric Blake
2017-03-14 19:16 ` [Qemu-devel] [PULL 00/18] Misc patches for QEMU 2.9 hard freeze Peter Maydell
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=1489508300-48184-2-git-send-email-pbonzini@redhat.com \
--to=pbonzini@redhat.com \
--cc=dgilbert@redhat.com \
--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).