qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH RFC 18/21] migration: Allow postcopy_register_shared_ufd() to


From: Juan Quintela
Subject: Re: [PATCH RFC 18/21] migration: Allow postcopy_register_shared_ufd() to fail
Date: Wed, 01 Feb 2023 20:09:03 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux)

Peter Xu <peterx@redhat.com> wrote:
> Let's fail double-map for vhost-user and any potential users that can have
> a remote userfaultfd for now.
>
> Signed-off-by: Peter Xu <peterx@redhat.com>

Reviewed-by: Juan Quintela <quintela@redhat.com>

But

> -void postcopy_register_shared_ufd(struct PostCopyFD *pcfd)
> +int postcopy_register_shared_ufd(struct PostCopyFD *pcfd)
>  {
>      MigrationIncomingState *mis = migration_incoming_get_current();
>  
> +    if (migrate_hugetlb_doublemap()) {
> +        return -EINVAL;

I am not sure that -EINVAL is the best answer here.
There is not a problem with the value.  The problem is that both
features together don't work.

As an alternative:

ENOSYS 38 Function not implemented

But I am not sure that this is much better :-(

Later, Juan.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]