From: Warner Losh <imp@bsdimp.com>
To: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
Cc: Kyle Evans <kevans@freebsd.org>,
Richard Henderson <richard.henderson@linaro.org>,
QEMU Developers <qemu-devel@nongnu.org>,
Stacey Son <sson@freebsd.org>
Subject: Re: [PATCH 12/14] bsd-user/sysarch: Provide a per-arch framework for sysarch syscall
Date: Sun, 26 Sep 2021 11:21:18 -0600 [thread overview]
Message-ID: <CANCZdfprC16ezJQCWJmYEApX6eym9nxSOqAtBAGr+cziS4r2qw@mail.gmail.com> (raw)
In-Reply-To: <64e8f0f5-1239-fc04-1c58-189421212f2c@amsat.org>
[-- Attachment #1: Type: text/plain, Size: 3083 bytes --]
On Sat, Sep 25, 2021 at 4:46 AM Philippe Mathieu-Daudé <f4bug@amsat.org>
wrote:
> Hi Warner,
>
> On 9/22/21 08:14, Warner Losh wrote:
> > Add the missing glue to pull in do_freebsd_sysarch to call
> > do_freebsd_arch_sysarch. Put it in os-sys.c, which will be used for
> > sysctl and sysarch system calls because they are mostly arch specific.
> >
> > Signed-off-by: Stacey Son <sson@FreeBSD.org>
> > Signed-off-by: Warner Losh <imp@bsdimp.com>
> > ---
> > bsd-user/freebsd/meson.build | 3 +++
> > bsd-user/freebsd/os-sys.c | 28 ++++++++++++++++++++++++++++
> > bsd-user/meson.build | 6 ++++++
> > bsd-user/qemu.h | 3 +++
> > bsd-user/syscall.c | 7 -------
> > 5 files changed, 40 insertions(+), 7 deletions(-)
> > create mode 100644 bsd-user/freebsd/meson.build
> > create mode 100644 bsd-user/freebsd/os-sys.c
>
> > +/* sysarch() is architecture dependent. */
> > +abi_long do_freebsd_sysarch(void *cpu_env, abi_long arg1, abi_long arg2)
> > +{
> > +
> > + return do_freebsd_arch_sysarch(cpu_env, arg1, arg2);
> > +}
> > diff --git a/bsd-user/meson.build b/bsd-user/meson.build
> > index 0369549340..561913de05 100644
> > --- a/bsd-user/meson.build
> > +++ b/bsd-user/meson.build
> > @@ -8,3 +8,9 @@ bsd_user_ss.add(files(
> > 'syscall.c',
> > 'uaccess.c',
> > ))
> > +
> > +# Pull in the OS-specific build glue, if any
> > +if fs.exists(targetos)
> > + subdir(targetos)
>
> I am a bit confused here, we have an optional implementation ...
>
> > +endif
> > +
> > diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h
> > index 4ee57b91f0..3dde381d5d 100644
> > --- a/bsd-user/qemu.h
> > +++ b/bsd-user/qemu.h
> > @@ -239,6 +239,9 @@ extern unsigned long target_sgrowsiz;
> > abi_long get_errno(abi_long ret);
> > int is_error(abi_long ret);
> >
> > +/* os-sys.c */
> > +abi_long do_freebsd_sysarch(void *cpu_env, abi_long arg1, abi_long
> arg2);
>
> ... that is declared as non-optional.
>
> In fact it is called by do_freebsd_syscall(), not restricted to
> TARGET_I386.
>
> This shouldn't be (meson) optional IMO.
>
I made it optional because we descend into this directory even
for linux targets when building linux-user on at least ubuntu (and
I think all linux targets).
Your comment suggests that I need to have a different meson fix
for this situation...
Warner
> > +
> > /* user access */
> >
> > #define VERIFY_READ PAGE_READ
> > diff --git a/bsd-user/syscall.c b/bsd-user/syscall.c
> > index 9bc72501b2..9f51563abd 100644
> > --- a/bsd-user/syscall.c
> > +++ b/bsd-user/syscall.c
> > @@ -88,13 +88,6 @@ static abi_long do_obreak(abi_ulong new_brk)
> > return 0;
> > }
> >
> > -#if defined(TARGET_I386)
> > -static abi_long do_freebsd_sysarch(CPUX86State *env, int op, abi_ulong
> parms)
> > -{
> > - do_freebsd_arch_sysarch(env, op, parms);
> > -}
> > -#endif
> > -
> > #ifdef __FreeBSD__
> > /*
> > * XXX this uses the undocumented oidfmt interface to find the kind of
> >
>
[-- Attachment #2: Type: text/html, Size: 4152 bytes --]
next prev parent reply other threads:[~2021-09-26 17:24 UTC|newest]
Thread overview: 50+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-22 6:14 [PATCH 00/14] bsd-user: misc cleanup for aarch64 import Warner Losh
2021-09-22 6:14 ` [PATCH 01/14] bsd-user/target_os-user.h: Remove support for FreeBSD older than 12.0 Warner Losh
2021-09-22 6:14 ` [PATCH 02/14] bsd-user/strace.list: Remove support for FreeBSD versions " Warner Losh
2021-09-23 17:57 ` Richard Henderson
2021-09-22 6:14 ` [PATCH 03/14] bsd-user: TARGET_RESET define is unused, remove it Warner Losh
2021-09-23 17:57 ` Richard Henderson
2021-09-25 10:30 ` Philippe Mathieu-Daudé
2021-09-22 6:14 ` [PATCH 04/14] bsd-user: export get_errno and is_error from syscall.c Warner Losh
2021-09-23 17:58 ` Richard Henderson
2021-09-25 10:33 ` Philippe Mathieu-Daudé
2021-09-26 17:14 ` Warner Losh
2021-09-22 6:14 ` [PATCH 05/14] bsd-user/errno_defs.h: Add internal error numbers Warner Losh
2021-09-23 17:59 ` Richard Henderson
2021-09-22 6:14 ` [PATCH 06/14] bsd-user: move TARGET_MC_GET_CLEAR_RET to target_os_signal.h Warner Losh
2021-09-23 18:00 ` Richard Henderson
2021-09-25 10:35 ` Philippe Mathieu-Daudé
2021-09-26 17:16 ` Warner Losh
2021-09-22 6:14 ` [PATCH 07/14] bsd-user/target_os_elf.h: Remove fallback ELF_HWCAP and reorder Warner Losh
2021-09-23 18:01 ` Richard Henderson
2021-09-25 10:36 ` Philippe Mathieu-Daudé
2021-09-22 6:14 ` [PATCH 08/14] bsd-user/target_os_elf: If ELF_HWCAP2 is defined, publish it Warner Losh
2021-09-23 18:01 ` Richard Henderson
2021-09-25 10:37 ` Philippe Mathieu-Daudé
2021-09-22 6:14 ` [PATCH 09/14] bsd-user: Remove used from TaskState Warner Losh
2021-09-23 18:02 ` Richard Henderson
2021-09-25 10:38 ` Philippe Mathieu-Daudé
2021-09-22 6:14 ` [PATCH 10/14] bsd-user: Add stop_all_tasks Warner Losh
2021-09-23 18:04 ` Richard Henderson
2021-09-22 6:14 ` [PATCH 11/14] bsd-user/sysarch: Move to using do_freebsd_arch_sysarch interface Warner Losh
2021-09-23 18:07 ` Richard Henderson
2021-09-24 15:25 ` Warner Losh
2021-09-22 6:14 ` [PATCH 12/14] bsd-user/sysarch: Provide a per-arch framework for sysarch syscall Warner Losh
2021-09-23 18:08 ` Richard Henderson
2021-09-25 10:46 ` Philippe Mathieu-Daudé
2021-09-26 17:21 ` Warner Losh [this message]
2021-09-22 6:14 ` [PATCH 13/14] bsd-user: Rename sigqueue to qemu_sigqueue Warner Losh
2021-09-23 18:09 ` Richard Henderson
2021-09-25 10:46 ` Philippe Mathieu-Daudé
2021-09-22 6:14 ` [PATCH 14/14] bsd-user/signal: Create a dummy signal queueing function Warner Losh
2021-09-23 18:13 ` Richard Henderson
2021-09-24 20:11 ` Warner Losh
2021-09-24 20:30 ` Kyle Evans
2021-09-24 23:51 ` Richard Henderson
2021-09-26 18:14 ` Warner Losh
2021-09-26 18:34 ` Philippe Mathieu-Daudé
2021-09-26 19:00 ` Warner Losh
2021-09-26 19:13 ` Philippe Mathieu-Daudé
2021-09-25 10:50 ` Philippe Mathieu-Daudé
2021-09-25 14:53 ` Warner Losh
2021-09-26 3:06 ` Warner Losh
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=CANCZdfprC16ezJQCWJmYEApX6eym9nxSOqAtBAGr+cziS4r2qw@mail.gmail.com \
--to=imp@bsdimp.com \
--cc=f4bug@amsat.org \
--cc=kevans@freebsd.org \
--cc=qemu-devel@nongnu.org \
--cc=richard.henderson@linaro.org \
--cc=sson@freebsd.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).