All of lore.kernel.org
 help / color / mirror / Atom feed
From: mathieu.desnoyers@efficios.com (Mathieu Desnoyers)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 0/3] Support rseq on arm64
Date: Mon, 9 Jul 2018 12:06:22 -0400 (EDT)	[thread overview]
Message-ID: <1957291037.1983.1531152382750.JavaMail.zimbra@efficios.com> (raw)
In-Reply-To: <1531145985-3747-1-git-send-email-will.deacon@arm.com>

----- On Jul 9, 2018, at 10:19 AM, Will Deacon will.deacon at arm.com wrote:

> Hello,
> 
> This is version two of the patches previously posted here:
> 
> http://lkml.kernel.org/r/1529949285-11013-1-git-send-email-will.deacon at arm.com
> 
> Changes since v1 include:
> 
>  * Move abort handler in-line to avoid possibility of it being
>    out-of-range for conditional branch instructions
> 
> I've tested both native and compat (little-endian only) with the selftests
> and they pass successfully on my Seattle box.

For the whole series:

Acked-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>

Thanks!

Mathieu

> 
> Thanks,
> 
> Will
> 
> --->8
> 
> Will Deacon (3):
>  arm64: rseq: Implement backend rseq calls and select HAVE_RSEQ
>  asm-generic: unistd.h: Wire up sys_rseq
>  rseq/selftests: Add support for arm64
> 
> arch/arm64/Kconfig                        |   1 +
> arch/arm64/include/asm/unistd.h           |   2 +-
> arch/arm64/include/asm/unistd32.h         |   2 +
> arch/arm64/kernel/entry.S                 |   2 +
> arch/arm64/kernel/ptrace.c                |   2 +
> arch/arm64/kernel/signal.c                |   3 +
> include/uapi/asm-generic/unistd.h         |   4 +-
> tools/testing/selftests/rseq/param_test.c |  20 +
> tools/testing/selftests/rseq/rseq-arm64.h | 594 ++++++++++++++++++++++++++++++
> tools/testing/selftests/rseq/rseq.h       |   2 +
> 10 files changed, 630 insertions(+), 2 deletions(-)
> create mode 100644 tools/testing/selftests/rseq/rseq-arm64.h
> 
> --
> 2.1.4

-- 
Mathieu Desnoyers
EfficiOS Inc.
http://www.efficios.com

WARNING: multiple messages have this Message-ID (diff)
From: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
To: Will Deacon <will.deacon@arm.com>
Cc: linux-arm-kernel <linux-arm-kernel@lists.infradead.org>,
	Arnd Bergmann <arnd@arndb.de>,
	Peter Zijlstra <peterz@infradead.org>,
	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>,
	Boqun Feng <boqun.feng@gmail.com>,
	peter maydell <peter.maydell@linaro.org>,
	linux-kernel <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v2 0/3] Support rseq on arm64
Date: Mon, 9 Jul 2018 12:06:22 -0400 (EDT)	[thread overview]
Message-ID: <1957291037.1983.1531152382750.JavaMail.zimbra@efficios.com> (raw)
In-Reply-To: <1531145985-3747-1-git-send-email-will.deacon@arm.com>

----- On Jul 9, 2018, at 10:19 AM, Will Deacon will.deacon@arm.com wrote:

> Hello,
> 
> This is version two of the patches previously posted here:
> 
> http://lkml.kernel.org/r/1529949285-11013-1-git-send-email-will.deacon@arm.com
> 
> Changes since v1 include:
> 
>  * Move abort handler in-line to avoid possibility of it being
>    out-of-range for conditional branch instructions
> 
> I've tested both native and compat (little-endian only) with the selftests
> and they pass successfully on my Seattle box.

For the whole series:

Acked-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>

Thanks!

Mathieu

> 
> Thanks,
> 
> Will
> 
> --->8
> 
> Will Deacon (3):
>  arm64: rseq: Implement backend rseq calls and select HAVE_RSEQ
>  asm-generic: unistd.h: Wire up sys_rseq
>  rseq/selftests: Add support for arm64
> 
> arch/arm64/Kconfig                        |   1 +
> arch/arm64/include/asm/unistd.h           |   2 +-
> arch/arm64/include/asm/unistd32.h         |   2 +
> arch/arm64/kernel/entry.S                 |   2 +
> arch/arm64/kernel/ptrace.c                |   2 +
> arch/arm64/kernel/signal.c                |   3 +
> include/uapi/asm-generic/unistd.h         |   4 +-
> tools/testing/selftests/rseq/param_test.c |  20 +
> tools/testing/selftests/rseq/rseq-arm64.h | 594 ++++++++++++++++++++++++++++++
> tools/testing/selftests/rseq/rseq.h       |   2 +
> 10 files changed, 630 insertions(+), 2 deletions(-)
> create mode 100644 tools/testing/selftests/rseq/rseq-arm64.h
> 
> --
> 2.1.4

-- 
Mathieu Desnoyers
EfficiOS Inc.
http://www.efficios.com

  parent reply	other threads:[~2018-07-09 16:06 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-09 14:19 [PATCH v2 0/3] Support rseq on arm64 Will Deacon
2018-07-09 14:19 ` Will Deacon
2018-07-09 14:19 ` [PATCH v2 1/3] arm64: rseq: Implement backend rseq calls and select HAVE_RSEQ Will Deacon
2018-07-09 14:19   ` Will Deacon
2018-07-09 14:19 ` [PATCH v2 2/3] asm-generic: unistd.h: Wire up sys_rseq Will Deacon
2018-07-09 14:19   ` Will Deacon
2018-07-10 17:53   ` Will Deacon
2018-07-10 17:53     ` Will Deacon
2018-07-10 21:32     ` Arnd Bergmann
2018-07-10 21:32       ` Arnd Bergmann
2018-07-09 14:19 ` [PATCH v2 3/3] rseq/selftests: Add support for arm64 Will Deacon
2018-07-09 14:19   ` Will Deacon
2018-07-09 16:06 ` Mathieu Desnoyers [this message]
2018-07-09 16:06   ` [PATCH v2 0/3] Support rseq on arm64 Mathieu Desnoyers
2018-07-09 16:53   ` Will Deacon
2018-07-09 16:53     ` Will Deacon
2018-07-09 17:17     ` Mathieu Desnoyers
2018-07-09 17:17       ` Mathieu Desnoyers
2018-07-10 14:49       ` Will Deacon
2018-07-10 14:49         ` Will Deacon
2018-07-10 14:51         ` Mathieu Desnoyers
2018-07-10 14:51           ` Mathieu Desnoyers

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=1957291037.1983.1531152382750.JavaMail.zimbra@efficios.com \
    --to=mathieu.desnoyers@efficios.com \
    --cc=linux-arm-kernel@lists.infradead.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.