qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Joelle van Dyne <j@getutm.app>
To: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
Cc: QEMU Developers <qemu-devel@nongnu.org>
Subject: Re: [PATCH v5 7/7] block: check availablity for preadv/pwritev on mac
Date: Fri, 20 Nov 2020 10:55:06 -0600	[thread overview]
Message-ID: <CA+E+eSDKwusE9_h8N5vd+zod6MsE8ki1hwT7h6shd2=kB=tpFg@mail.gmail.com> (raw)
In-Reply-To: <1a1dab52-fb82-64e7-0067-7957aae37281@amsat.org>

How about this:

static bool preadv_present = true;
static bool preadv_checked = false;

static ssize_t
qemu_preadv(int fd, const struct iovec *iov, int nr_iov, off_t offset)
{
#ifdef CONFIG_DARWIN
    if (!preadv_checked) {
        if (__builtin_available(macOS 11, iOS 14, watchOS 7, tvOS 14, *)) {
            preadv_checked = true;
        } else {
            preadv_present = false;
            return -ENOSYS;
        }
    }
#endif
    return preadv(fd, iov, nr_iov, offset);
}

-j

On Fri, Nov 20, 2020 at 10:21 AM Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:
>
> On 11/20/20 4:49 PM, Joelle van Dyne wrote:
> > No, because if you build on a macOS 11 host but try to run it on macOS
> > 10.15 then it will crash.
>
> I'm not asking to move the check to configure/build time,
> but to do it only once at runtime...
>
> >
> > -j
> >
> > On Fri, Nov 20, 2020 at 4:32 AM Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:
> >>
> >> On 11/9/20 12:24 AM, Joelle van Dyne wrote:
> >>> macOS 11/iOS 14 added preadv/pwritev APIs. Due to weak linking, configure
> >>> will succeed with CONFIG_PREADV even when targeting a lower OS version. We
> >>> therefore need to check at run time if we can actually use these APIs.
> >>>
> >>> Signed-off-by: Joelle van Dyne <j@getutm.app>
> >>> ---
> >>>  block/file-posix.c | 12 ++++++++++++
> >>>  1 file changed, 12 insertions(+)
> >>>
> >>> diff --git a/block/file-posix.c b/block/file-posix.c
> >>> index d83219df55..a9d69746a0 100644
> >>> --- a/block/file-posix.c
> >>> +++ b/block/file-posix.c
> >>> @@ -1394,12 +1394,24 @@ static bool preadv_present = true;
> >>>  static ssize_t
> >>>  qemu_preadv(int fd, const struct iovec *iov, int nr_iov, off_t offset)
> >>>  {
> >>> +#ifdef CONFIG_DARWIN /* preadv introduced in macOS 11 */
> >>> +    if (!__builtin_available(macOS 11, iOS 14, watchOS 7, tvOS 14, *)) {
> >>
> >> Can we change the CONFIG_PREADV ifdef'ry to run this check once
> >> on macOS 11?
> >>
> >>> +        preadv_present = false;
> >>> +        return -ENOSYS;
> >>> +    } else
> >>> +#endif
> >>>      return preadv(fd, iov, nr_iov, offset);
> >>>  }
> >>>
> >>>  static ssize_t
> >>>  qemu_pwritev(int fd, const struct iovec *iov, int nr_iov, off_t offset)
> >>>  {
> >>> +#ifdef CONFIG_DARWIN /* pwritev introduced in macOS 11 */
> >>> +    if (!__builtin_available(macOS 11, iOS 14, watchOS 7, tvOS 14, *)) {
> >>> +        preadv_present = false;
> >>> +        return -ENOSYS;
> >>> +    } else
> >>> +#endif
> >>>      return pwritev(fd, iov, nr_iov, offset);
> >>>  }
> >>>
> >>>
> >>
> >


  reply	other threads:[~2020-11-20 17:05 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-08 23:24 [PATCH v5 0/7] iOS and Apple Silicon host support Joelle van Dyne
2020-11-08 23:24 ` [PATCH v5 1/7] configure: option to disable host block devices Joelle van Dyne
2020-11-08 23:24 ` [PATCH v5 2/7] configure: cross-compiling with empty cross_prefix Joelle van Dyne
2020-11-20 10:23   ` Philippe Mathieu-Daudé
2020-11-08 23:24 ` [PATCH v5 3/7] qemu: add support for iOS host Joelle van Dyne
2020-11-08 23:24 ` [PATCH v5 4/7] coroutine: add libucontext as external library Joelle van Dyne
2020-11-09  0:01   ` Philippe Mathieu-Daudé
2020-11-08 23:24 ` [PATCH v5 5/7] slirp: update build flags for iOS resolv fix Joelle van Dyne
2020-11-08 23:24 ` [PATCH v5 6/7] tcg: implement JIT for iOS and Apple Silicon Joelle van Dyne
2020-11-20  9:08   ` Alexander Graf
2020-11-20 14:15     ` Alexander Graf
2020-11-20 14:36       ` Richard Henderson
2020-11-20 15:58     ` Joelle van Dyne
2020-11-25  1:15       ` Alexander Graf
2020-11-25  2:08         ` Joelle van Dyne
2020-12-11 10:54           ` Alexander Graf
2020-12-11 12:35             ` Stefan Hajnoczi
2020-12-11 18:47               ` Joelle van Dyne
2020-11-08 23:24 ` [PATCH v5 7/7] block: check availablity for preadv/pwritev on mac Joelle van Dyne
2020-11-20 10:32   ` Philippe Mathieu-Daudé
2020-11-20 15:49     ` Joelle van Dyne
2020-11-20 16:20       ` Philippe Mathieu-Daudé
2020-11-20 16:55         ` Joelle van Dyne [this message]
2020-11-12 16:26 ` [PATCH v5 0/7] iOS and Apple Silicon host support Stefan Hajnoczi

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='CA+E+eSDKwusE9_h8N5vd+zod6MsE8ki1hwT7h6shd2=kB=tpFg@mail.gmail.com' \
    --to=j@getutm.app \
    --cc=f4bug@amsat.org \
    --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).