From: "Michael S. Tsirkin" <mst@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Dr. David Alan Gilbert" <dgilbert@redhat.com>,
Peter Maydell <peter.maydell@linaro.org>,
Juan Quintela <quintela@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v2 3/3] postcopy: drop unnecessary conditions
Date: Tue, 20 Mar 2018 19:53:42 +0200 [thread overview]
Message-ID: <20180320195304-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <1521566230-111929-4-git-send-email-mst@redhat.com>
On Tue, Mar 20, 2018 at 07:17:35PM +0200, Michael S. Tsirkin wrote:
> We have our own copy of unistd so there is no
> need to check for symbols present there.
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Self-Nack
pls ignore - we do not have unistd.h on all systems unfortunately.
Will send v3 without this patch and with more tweaks.
> ---
> migration/postcopy-ram.c | 4 +---
> tests/migration-test.c | 2 +-
> 2 files changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/migration/postcopy-ram.c b/migration/postcopy-ram.c
> index efd7793..027c02c 100644
> --- a/migration/postcopy-ram.c
> +++ b/migration/postcopy-ram.c
> @@ -86,7 +86,7 @@ int postcopy_notify(enum PostcopyNotifyReason reason, Error **errp)
> #include <asm/types.h> /* for __u64 */
> #endif
>
> -#if defined(__linux__) && defined(__NR_userfaultfd) && defined(CONFIG_EVENTFD)
> +#if defined(__linux__) && defined(CONFIG_EVENTFD)
> #include <sys/eventfd.h>
> #include <linux/userfaultfd.h>
>
> @@ -97,7 +97,6 @@ int postcopy_notify(enum PostcopyNotifyReason reason, Error **errp)
> *
> * Returns: true on success
> *
> - * __NR_userfaultfd - should be checked before
> * @features: out parameter will contain uffdio_api.features provided by kernel
> * in case of success
> */
> @@ -107,7 +106,6 @@ static bool receive_ufd_features(uint64_t *features)
> int ufd;
> bool ret = true;
>
> - /* if we are here __NR_userfaultfd should exists */
> ufd = syscall(__NR_userfaultfd, O_CLOEXEC);
> if (ufd == -1) {
> error_report("%s: syscall __NR_userfaultfd failed: %s", __func__,
> diff --git a/tests/migration-test.c b/tests/migration-test.c
> index 422bf1a..e5dcedb 100644
> --- a/tests/migration-test.c
> +++ b/tests/migration-test.c
> @@ -32,7 +32,7 @@ bool got_stop;
> #include <sys/vfs.h>
> #endif
>
> -#if defined(__linux__) && defined(__NR_userfaultfd) && defined(CONFIG_EVENTFD)
> +#if defined(__linux__) && defined(CONFIG_EVENTFD)
> #include <sys/eventfd.h>
> #include <sys/ioctl.h>
> #include <linux/userfaultfd.h>
> --
> MST
>
prev parent reply other threads:[~2018-03-20 17:53 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-20 17:17 [Qemu-devel] [PATCH v2 0/3] migration: usefaultfd cleanups Michael S. Tsirkin
2018-03-20 17:17 ` [Qemu-devel] [PATCH v2 1/3] update-linux-headers.sh: add unistd.h Michael S. Tsirkin
2018-03-20 17:24 ` Peter Maydell
2018-03-20 17:29 ` Michael S. Tsirkin
2018-03-20 18:05 ` Paolo Bonzini
2018-03-20 17:17 ` [Qemu-devel] [PATCH v2 2/3] linux-headers: add asm-generic/unistd.h Michael S. Tsirkin
2018-03-20 17:17 ` [Qemu-devel] [PATCH v2 3/3] postcopy: drop unnecessary conditions Michael S. Tsirkin
2018-03-20 17:20 ` Peter Maydell
2018-03-20 17:28 ` Michael S. Tsirkin
2018-03-20 17:53 ` Michael S. Tsirkin [this message]
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=20180320195304-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=dgilbert@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.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).