From: Igor Mammedov <imammedo@redhat.com>
To: "Marc-André Lureau" <marcandre.lureau@redhat.com>
Cc: qemu-devel@nongnu.org, pbonzini@redhat.com
Subject: Re: [Qemu-devel] [PATCH] hostmem-memfd: honour share=on/off property
Date: Thu, 30 Aug 2018 10:14:57 +0200 [thread overview]
Message-ID: <20180830101457.0071b98e@redhat.com> (raw)
In-Reply-To: <20180828153840.22519-1-marcandre.lureau@redhat.com>
On Tue, 28 Aug 2018 17:38:40 +0200
Marc-André Lureau <marcandre.lureau@redhat.com> wrote:
> The share=on/off property is used to modified mmap() MAP_SHARED
> setting. Make it on by default for convenience and compatibility
> reasons.
>
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> ---
> backends/hostmem-memfd.c | 4 +++-
> qemu-options.hx | 4 +++-
> 2 files changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/backends/hostmem-memfd.c b/backends/hostmem-memfd.c
> index 1e20fe0ba8..abd52364db 100644
> --- a/backends/hostmem-memfd.c
> +++ b/backends/hostmem-memfd.c
> @@ -59,7 +59,8 @@ memfd_backend_memory_alloc(HostMemoryBackend *backend, Error **errp)
>
> name = object_get_canonical_path(OBJECT(backend));
> memory_region_init_ram_from_fd(&backend->mr, OBJECT(backend),
> - name, backend->size, true, fd, errp);
> + name, backend->size,
> + backend->share, fd, errp);
> g_free(name);
> }
>
> @@ -131,6 +132,7 @@ memfd_backend_instance_init(Object *obj)
>
> /* default to sealed file */
> m->seal = true;
> + MEMORY_BACKEND(m)->share = true;
> }
>
> static void
> diff --git a/qemu-options.hx b/qemu-options.hx
> index f14e423b7c..25c02d72b8 100644
> --- a/qemu-options.hx
> +++ b/qemu-options.hx
> @@ -4029,7 +4029,7 @@ Memory backend objects offer more control than the @option{-m} option that is
> traditionally used to define guest RAM. Please refer to
> @option{memory-backend-file} for a description of the options.
>
> -@item -object memory-backend-memfd,id=@var{id},merge=@var{on|off},dump=@var{on|off},prealloc=@var{on|off},size=@var{size},host-nodes=@var{host-nodes},policy=@var{default|preferred|bind|interleave},seal=@var{on|off},hugetlb=@var{on|off},hugetlbsize=@var{size}
> +@item -object memory-backend-memfd,id=@var{id},merge=@var{on|off},dump=@var{on|off},share=@var{on|off},prealloc=@var{on|off},size=@var{size},host-nodes=@var{host-nodes},policy=@var{default|preferred|bind|interleave},seal=@var{on|off},hugetlb=@var{on|off},hugetlbsize=@var{size}
>
> Creates an anonymous memory file backend object, which allows QEMU to
> share the memory with an external process (e.g. when using
> @@ -4051,6 +4051,8 @@ with the @option{seal} option (requires at least Linux 4.16).
> Please refer to @option{memory-backend-file} for a description of the
> other options.
>
> +The @option{share} boolean option is @var{on} by default with memfd.
> +
> @item -object rng-random,id=@var{id},filename=@var{/dev/random}
>
> Creates a random number generator backend which obtains entropy from
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
next prev parent reply other threads:[~2018-08-30 8:20 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-08-28 15:38 [Qemu-devel] [PATCH] hostmem-memfd: honour share=on/off property Marc-André Lureau
2018-08-28 16:43 ` Igor Mammedov
2018-08-28 16:54 ` Marc-André Lureau
2018-08-28 16:55 ` Marc-André Lureau
2018-08-29 8:50 ` Igor Mammedov
2018-08-29 12:36 ` Marc-André Lureau
2018-08-30 8:20 ` Igor Mammedov
2018-08-30 17:10 ` Marc-André Lureau
2018-08-30 8:14 ` Igor Mammedov [this message]
2018-11-26 16:57 ` Paolo Bonzini
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=20180830101457.0071b98e@redhat.com \
--to=imammedo@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=pbonzini@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.