linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@kernel.org>
To: Dominik Brodowski <linux@dominikbrodowski.net>
Cc: linux-kernel@vger.kernel.org, Al Viro <viro@zeniv.linux.org.uk>,
	Andi Kleen <ak@linux.intel.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Andy Lutomirski <luto@kernel.org>,
	Brian Gerst <brgerst@gmail.com>,
	Denys Vlasenko <dvlasenk@redhat.com>,
	"H. Peter Anvin" <hpa@zytor.com>, Ingo Molnar <mingo@redhat.com>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	Peter Zijlstra <peterz@infradead.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	x86@kernel.org
Subject: Re: [PATCH 0/8] use struct pt_regs based syscall calling for x86-64
Date: Thu, 5 Apr 2018 17:19:33 +0200	[thread overview]
Message-ID: <20180405151933.egmt7ressx2ikdnr@gmail.com> (raw)
In-Reply-To: <20180405095307.3730-1-linux@dominikbrodowski.net>


* Dominik Brodowski <linux@dominikbrodowski.net> wrote:

> Dominik Brodowski (7):
>   syscalls: introduce CONFIG_ARCH_HAS_SYSCALL_WRAPPER
>   syscalls/x86: use struct pt_regs based syscall calling for 64-bit
>     syscalls
>   syscalls: prepare ARCH_HAS_SYSCALL_WRAPPER for compat syscalls
>   syscalls/x86: use struct pt_regs based syscall calling for
>     IA32_EMULATION and x32
>   syscalls/x86: unconditionally enable struct pt_regs based syscalls on
>     x86_64
>   x86/entry/64: extend register clearing on syscall entry to lower
>     registers
>   syscalls/x86: rename struct pt_regs-based sys_*() to __sys_x86_*()
> 
> Linus Torvalds (1):
>   x86: don't pointlessly reload the system call number
> 
>  arch/x86/Kconfig                       |   1 +
>  arch/x86/entry/calling.h               |   2 +
>  arch/x86/entry/common.c                |  20 +-
>  arch/x86/entry/entry_64.S              |   3 +-
>  arch/x86/entry/entry_64_compat.S       |   6 +
>  arch/x86/entry/syscall_32.c            |  15 +-
>  arch/x86/entry/syscall_64.c            |   6 +-
>  arch/x86/entry/syscalls/syscall_32.tbl | 724 +++++++++++++++++----------------
>  arch/x86/entry/syscalls/syscall_64.tbl | 712 ++++++++++++++++----------------
>  arch/x86/entry/vsyscall/vsyscall_64.c  |  18 +-
>  arch/x86/include/asm/syscall.h         |   4 +
>  arch/x86/include/asm/syscall_wrapper.h | 197 +++++++++
>  arch/x86/include/asm/syscalls.h        |  17 +-
>  include/linux/compat.h                 |  22 +
>  include/linux/syscalls.h               |  25 +-
>  init/Kconfig                           |  10 +
>  kernel/sys_ni.c                        |  10 +
>  kernel/time/posix-stubs.c              |  10 +
>  18 files changed, 1054 insertions(+), 748 deletions(-)
>  create mode 100644 arch/x86/include/asm/syscall_wrapper.h

Ok, this series looks mostly good to me, but AFAICS this breaks the UML build:

 make[2]: *** No rule to make target 'archheaders'.  Stop.
 arch/um/Makefile:119: recipe for target 'archheaders' failed
 make[1]: *** [archheaders] Error 2
 make[1]: *** Waiting for unfinished jobs....

Thanks,

	Ingo

  parent reply	other threads:[~2018-04-05 15:19 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-05  9:52 [PATCH 0/8] use struct pt_regs based syscall calling for x86-64 Dominik Brodowski
2018-04-05  9:53 ` [PATCH 1/8] x86: don't pointlessly reload the system call number Dominik Brodowski
2018-04-06 17:09   ` [tip:x86/asm] x86/syscalls: Don't " tip-bot for Linus Torvalds
2018-04-05  9:53 ` [PATCH 2/8] syscalls: introduce CONFIG_ARCH_HAS_SYSCALL_WRAPPER Dominik Brodowski
2018-04-06 17:10   ` [tip:x86/asm] syscalls/core: Introduce CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y tip-bot for Dominik Brodowski
2018-04-05  9:53 ` [PATCH 3/8] syscalls/x86: use struct pt_regs based syscall calling for 64-bit syscalls Dominik Brodowski
2018-04-06 17:11   ` [tip:x86/asm] syscalls/x86: Use 'struct pt_regs' based syscall calling convention " tip-bot for Dominik Brodowski
2018-04-05  9:53 ` [PATCH 4/8] syscalls: prepare ARCH_HAS_SYSCALL_WRAPPER for compat syscalls Dominik Brodowski
2018-04-06 17:11   ` [tip:x86/asm] syscalls/core: Prepare CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y " tip-bot for Dominik Brodowski
2018-04-05  9:53 ` [PATCH 5/8] syscalls/x86: use struct pt_regs based syscall calling for IA32_EMULATION and x32 Dominik Brodowski
2018-04-06 17:12   ` [tip:x86/asm] syscalls/x86: Use 'struct pt_regs' " tip-bot for Dominik Brodowski
2018-04-05  9:53 ` [PATCH 6/8] syscalls/x86: unconditionally enable struct pt_regs based syscalls on x86_64 Dominik Brodowski
2018-04-06 17:12   ` [tip:x86/asm] syscalls/x86: Unconditionally enable 'struct pt_regs' " tip-bot for Dominik Brodowski
2018-04-05  9:53 ` [PATCH 7/8] x86/entry/64: extend register clearing on syscall entry to lower registers Dominik Brodowski
2018-04-06 17:13   ` [tip:x86/asm] syscalls/x86: Extend " tip-bot for Dominik Brodowski
2018-04-05  9:53 ` [PATCH 8/8] syscalls/x86: rename struct pt_regs-based sys_*() to __sys_x86_*() Dominik Brodowski
2018-04-05 18:35   ` kbuild test robot
2018-04-05 15:19 ` Ingo Molnar [this message]
2018-04-05 20:31   ` [PATCH 0/8] use struct pt_regs based syscall calling for x86-64 Dominik Brodowski
2018-04-06  8:23     ` Ingo Molnar
2018-04-06  8:31       ` Dominik Brodowski
2018-04-06  8:34       ` Dominik Brodowski
2018-04-06  9:20         ` Ingo Molnar
2018-04-06  9:34           ` Dominik Brodowski
2018-04-06 12:34             ` Ingo Molnar
2018-04-06 13:07               ` Dominik Brodowski
2018-04-06 17:03                 ` Ingo Molnar

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=20180405151933.egmt7ressx2ikdnr@gmail.com \
    --to=mingo@kernel.org \
    --cc=ak@linux.intel.com \
    --cc=akpm@linux-foundation.org \
    --cc=brgerst@gmail.com \
    --cc=dvlasenk@redhat.com \
    --cc=hpa@zytor.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@dominikbrodowski.net \
    --cc=luto@kernel.org \
    --cc=mingo@redhat.com \
    --cc=peterz@infradead.org \
    --cc=tglx@linutronix.de \
    --cc=torvalds@linux-foundation.org \
    --cc=viro@zeniv.linux.org.uk \
    --cc=x86@kernel.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).