* [PATCH] migration/options: Add x-ignore-shared
@ 2025-12-05 17:20 Peter Xu
2025-12-08 15:41 ` Fabiano Rosas
0 siblings, 1 reply; 4+ messages in thread
From: Peter Xu @ 2025-12-05 17:20 UTC (permalink / raw)
To: qemu-devel; +Cc: peterx, Fabiano Rosas, Juraj Marcin
This aids scriptings only.
Signed-off-by: Peter Xu <peterx@redhat.com>
---
migration/options.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/migration/options.c b/migration/options.c
index e78324b80c..30bf9afaf0 100644
--- a/migration/options.c
+++ b/migration/options.c
@@ -203,6 +203,7 @@ const Property migration_properties[] = {
MIGRATION_CAPABILITY_SWITCHOVER_ACK),
DEFINE_PROP_MIG_CAP("x-dirty-limit", MIGRATION_CAPABILITY_DIRTY_LIMIT),
DEFINE_PROP_MIG_CAP("mapped-ram", MIGRATION_CAPABILITY_MAPPED_RAM),
+ DEFINE_PROP_MIG_CAP("x-ignore-share", MIGRATION_CAPABILITY_X_IGNORE_SHARED),
};
const size_t migration_properties_count = ARRAY_SIZE(migration_properties);
--
2.50.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] migration/options: Add x-ignore-shared
2025-12-05 17:20 [PATCH] migration/options: Add x-ignore-shared Peter Xu
@ 2025-12-08 15:41 ` Fabiano Rosas
2025-12-08 15:44 ` Claudio Fontana
0 siblings, 1 reply; 4+ messages in thread
From: Fabiano Rosas @ 2025-12-08 15:41 UTC (permalink / raw)
To: Peter Xu, qemu-devel; +Cc: peterx, Juraj Marcin
Peter Xu <peterx@redhat.com> writes:
> This aids scriptings only.
>
> Signed-off-by: Peter Xu <peterx@redhat.com>
> ---
> migration/options.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/migration/options.c b/migration/options.c
> index e78324b80c..30bf9afaf0 100644
> --- a/migration/options.c
> +++ b/migration/options.c
> @@ -203,6 +203,7 @@ const Property migration_properties[] = {
> MIGRATION_CAPABILITY_SWITCHOVER_ACK),
> DEFINE_PROP_MIG_CAP("x-dirty-limit", MIGRATION_CAPABILITY_DIRTY_LIMIT),
> DEFINE_PROP_MIG_CAP("mapped-ram", MIGRATION_CAPABILITY_MAPPED_RAM),
> + DEFINE_PROP_MIG_CAP("x-ignore-share", MIGRATION_CAPABILITY_X_IGNORE_SHARED),
> };
> const size_t migration_properties_count = ARRAY_SIZE(migration_properties);
Reviewed-by: Fabiano Rosas <farosas@suse.de>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] migration/options: Add x-ignore-shared
2025-12-08 15:41 ` Fabiano Rosas
@ 2025-12-08 15:44 ` Claudio Fontana
2025-12-08 16:32 ` Peter Xu
0 siblings, 1 reply; 4+ messages in thread
From: Claudio Fontana @ 2025-12-08 15:44 UTC (permalink / raw)
To: Fabiano Rosas, Peter Xu, qemu-devel; +Cc: Juraj Marcin
On 12/8/25 16:41, Fabiano Rosas wrote:
> Peter Xu <peterx@redhat.com> writes:
>
>> This aids scriptings only.
>>
>> Signed-off-by: Peter Xu <peterx@redhat.com>
>> ---
>> migration/options.c | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/migration/options.c b/migration/options.c
>> index e78324b80c..30bf9afaf0 100644
>> --- a/migration/options.c
>> +++ b/migration/options.c
>> @@ -203,6 +203,7 @@ const Property migration_properties[] = {
>> MIGRATION_CAPABILITY_SWITCHOVER_ACK),
>> DEFINE_PROP_MIG_CAP("x-dirty-limit", MIGRATION_CAPABILITY_DIRTY_LIMIT),
>> DEFINE_PROP_MIG_CAP("mapped-ram", MIGRATION_CAPABILITY_MAPPED_RAM),
>> + DEFINE_PROP_MIG_CAP("x-ignore-share", MIGRATION_CAPABILITY_X_IGNORE_SHARED),
>> };
>> const size_t migration_properties_count = ARRAY_SIZE(migration_properties);
>
> Reviewed-by: Fabiano Rosas <farosas@suse.de>
>
Nit: x-ignore-shared or x-ignore-share ? Commit msg and code seem to disagree.
Ciao,
C
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] migration/options: Add x-ignore-shared
2025-12-08 15:44 ` Claudio Fontana
@ 2025-12-08 16:32 ` Peter Xu
0 siblings, 0 replies; 4+ messages in thread
From: Peter Xu @ 2025-12-08 16:32 UTC (permalink / raw)
To: Claudio Fontana; +Cc: Fabiano Rosas, qemu-devel, Juraj Marcin
On Mon, Dec 08, 2025 at 04:44:25PM +0100, Claudio Fontana wrote:
> On 12/8/25 16:41, Fabiano Rosas wrote:
> > Peter Xu <peterx@redhat.com> writes:
> >
> >> This aids scriptings only.
> >>
> >> Signed-off-by: Peter Xu <peterx@redhat.com>
> >> ---
> >> migration/options.c | 1 +
> >> 1 file changed, 1 insertion(+)
> >>
> >> diff --git a/migration/options.c b/migration/options.c
> >> index e78324b80c..30bf9afaf0 100644
> >> --- a/migration/options.c
> >> +++ b/migration/options.c
> >> @@ -203,6 +203,7 @@ const Property migration_properties[] = {
> >> MIGRATION_CAPABILITY_SWITCHOVER_ACK),
> >> DEFINE_PROP_MIG_CAP("x-dirty-limit", MIGRATION_CAPABILITY_DIRTY_LIMIT),
> >> DEFINE_PROP_MIG_CAP("mapped-ram", MIGRATION_CAPABILITY_MAPPED_RAM),
> >> + DEFINE_PROP_MIG_CAP("x-ignore-share", MIGRATION_CAPABILITY_X_IGNORE_SHARED),
> >> };
> >> const size_t migration_properties_count = ARRAY_SIZE(migration_properties);
> >
> > Reviewed-by: Fabiano Rosas <farosas@suse.de>
> >
>
> Nit: x-ignore-shared or x-ignore-share ? Commit msg and code seem to disagree.
Ah true.. I'll fix it while queuing it, thanks.
--
Peter Xu
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-12-08 16:33 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-05 17:20 [PATCH] migration/options: Add x-ignore-shared Peter Xu
2025-12-08 15:41 ` Fabiano Rosas
2025-12-08 15:44 ` Claudio Fontana
2025-12-08 16:32 ` Peter Xu
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).