From: Richard Henderson <richard.henderson@linaro.org>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: QEMU Developers <qemu-devel@nongnu.org>,
Laurent Vivier <laurent@vivier.eu>
Subject: Re: [Qemu-devel] [PATCH v3 13/19] linux-user: Split out close, open, openat, read, write
Date: Fri, 22 Jun 2018 10:39:03 -0700 [thread overview]
Message-ID: <74febb77-65cc-51be-3369-5fed6c1edc4c@linaro.org> (raw)
In-Reply-To: <CAFEAcA9p63Fq+jjRpfwuXsubdVG-M9fjpdVx8JKRRyMgPOQfKA@mail.gmail.com>
On 06/22/2018 03:38 AM, Peter Maydell wrote:
>> +SYSCALL_IMPL(close)
>> +{
>> + fd_trans_unregister(arg1);
>> + return get_errno(close(arg1));
>> +}
>> +SYSCALL_DEF(close, ARG_DEC);
>
> If in future we wanted to extend the set of information
> we had for each syscall in the SyscallDef struct, I guess
> we'd add parameters to the SYSCALL_DEF macro (or have
> more variant macros)? I can't offhand think of something I'd
> want to use that for, so it's a bit of an abstract question
> for the moment.
Yes, I imagine we'd extend the SYSCALL_DEF macro(s) in that case.
Another thought I've had is to define variant SYSCALL_IMPL<N> macros that would
allow us to put names to arguments, and help make the implementations clearer.
E.g.
SYSCALL_IMPL1(close, fd)
{
fd_trans_unregister(fd);
return get_errno(close(fd));
}
r~
next prev parent reply other threads:[~2018-06-22 17:39 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-12 0:51 [Qemu-devel] [PATCH v3 00/19] linux-user: Split do_syscall Richard Henderson
2018-06-12 0:51 ` [Qemu-devel] [PATCH v3 01/19] linux-user/alpha: Fix epoll syscalls Richard Henderson
2018-06-12 0:51 ` [Qemu-devel] [PATCH v3 02/19] linux-user/hppa: Fix typo in mknodat syscall Richard Henderson
2018-06-12 0:51 ` [Qemu-devel] [PATCH v3 03/19] linux-user/microblaze: Fix typo in accept4 syscall Richard Henderson
2018-06-12 0:51 ` [Qemu-devel] [PATCH v3 04/19] linux-user/sparc64: Add inotify_rm_watch and tee syscalls Richard Henderson
2018-06-12 0:51 ` [Qemu-devel] [PATCH v3 05/19] linux-user: Remove DEBUG Richard Henderson
2018-06-12 0:51 ` [Qemu-devel] [PATCH v3 06/19] linux-user: Split out do_syscall1 Richard Henderson
2018-06-12 16:11 ` Philippe Mathieu-Daudé
2018-06-12 0:51 ` [Qemu-devel] [PATCH v3 07/19] linux-user: Relax single exit from "break" Richard Henderson
2018-06-12 16:23 ` Philippe Mathieu-Daudé
2018-08-11 21:50 ` Laurent Vivier
2018-06-12 0:51 ` [Qemu-devel] [PATCH v3 08/19] linux-user: Propagate goto efault to return Richard Henderson
2018-06-12 16:27 ` Philippe Mathieu-Daudé
2018-06-12 0:51 ` [Qemu-devel] [PATCH v3 09/19] linux-user: Propagate goto unimplemented_nowarn " Richard Henderson
2018-06-12 16:28 ` Philippe Mathieu-Daudé
2018-06-12 0:51 ` [Qemu-devel] [PATCH v3 10/19] linux-user: Propagate goto unimplemented to default Richard Henderson
2018-06-22 10:16 ` Peter Maydell
2018-06-12 0:51 ` [Qemu-devel] [PATCH v3 11/19] linux-user: Propagate goto fail to return Richard Henderson
2018-06-12 0:51 ` [Qemu-devel] [PATCH v3 12/19] linux-user: Setup split syscall infrastructure Richard Henderson
2018-06-22 10:30 ` Peter Maydell
2018-06-22 17:32 ` Richard Henderson
2018-08-12 20:45 ` Laurent Vivier
2018-08-13 0:09 ` Richard Henderson
2018-06-12 0:51 ` [Qemu-devel] [PATCH v3 13/19] linux-user: Split out close, open, openat, read, write Richard Henderson
2018-06-22 10:38 ` Peter Maydell
2018-06-22 17:39 ` Richard Henderson [this message]
2018-06-12 0:51 ` [Qemu-devel] [PATCH v3 14/19] linux-user: Split out preadv, pwritev, readv, writev Richard Henderson
2018-06-12 0:51 ` [Qemu-devel] [PATCH v3 15/19] linux-user: Split out pread64, pwrite64 Richard Henderson
2018-06-12 16:37 ` Philippe Mathieu-Daudé
2018-06-12 17:44 ` Richard Henderson
2018-06-12 19:02 ` Philippe Mathieu-Daudé
2018-06-12 0:51 ` [Qemu-devel] [PATCH v3 16/19] linux-user: Split out name_to_handle_at, open_by_handle_at Richard Henderson
2018-06-12 0:51 ` [Qemu-devel] [PATCH v3 17/19] linux-user: Split out ipc syscalls Richard Henderson
2018-06-12 0:51 ` [Qemu-devel] [PATCH v3 18/19] linux-user: Split out memory syscalls Richard Henderson
2018-06-12 0:51 ` [Qemu-devel] [PATCH v3 19/19] linux-user: Split out some process syscalls Richard Henderson
2018-08-11 22:48 ` Laurent Vivier
2018-06-12 1:19 ` [Qemu-devel] [PATCH v3 00/19] linux-user: Split do_syscall no-reply
2018-06-12 11:00 ` Laurent Vivier
2018-06-22 10:40 ` Peter Maydell
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=74febb77-65cc-51be-3369-5fed6c1edc4c@linaro.org \
--to=richard.henderson@linaro.org \
--cc=laurent@vivier.eu \
--cc=peter.maydell@linaro.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).