All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: oe-kbuild@lists.linux.dev
Cc: lkp@intel.com
Subject: Re: [PATCH] arm64: syscall: Ensure saved x0 is kept in-sync with tracer updates
Date: Mon, 17 Aug 2026 08:21:59 +0200	[thread overview]
Message-ID: <202608170808.txxj5kR9-lkp@intel.com> (raw)

:::::: 
:::::: Manual check reason: "low confidence bisect report"
:::::: 

BCC: lkp@intel.com
CC: oe-kbuild-all@lists.linux.dev
In-Reply-To: <20260714143600.23853-1-will@kernel.org>
References: <20260714143600.23853-1-will@kernel.org>
TO: Will Deacon <will@kernel.org>
TO: linux-arm-kernel@lists.infradead.org
CC: linux-kernel@vger.kernel.org
CC: Will Deacon <will@kernel.org>
CC: Kees Cook <kees@kernel.org>
CC: Jinjie Ruan <ruanjinjie@huawei.com>
CC: Mark Rutland <mark.rutland@arm.com>
CC: Yiqi Sun <sunyiqixm@gmail.com>
CC: Catalin Marinas <catalin.marinas@arm.com>

Hi Will,

kernel test robot noticed the following build errors:

[auto build test ERROR on linux-review/Yiqi-Sun/arm64-ptrace-use-live-x0-for-seccomp-and-audit-after-ptrace/20260815-210721]

url:    https://github.com/intel-lab-lkp/linux/commits/Will-Deacon/arm64-syscall-Ensure-saved-x0-is-kept-in-sync-with-tracer-updates/20260815-220235
base:   https://github.com/intel-lab-lkp/linux Yiqi-Sun/arm64-ptrace-use-live-x0-for-seccomp-and-audit-after-ptrace/20260815-210721
patch link:    https://lore.kernel.org/r/20260714143600.23853-1-will%40kernel.org
patch subject: [PATCH] arm64: syscall: Ensure saved x0 is kept in-sync with tracer updates
:::::: branch date: 2 days ago
:::::: commit date: 2 days ago
config: arm64-allnoconfig-bpf (https://download.01.org/0day-ci/archive/20260817/202608170808.txxj5kR9-lkp@intel.com/config)
compiler: aarch64-linux-gnu-gcc (Debian 14.2.0-19) 14.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260817/202608170808.txxj5kR9-lkp@intel.com/reproduce)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/r/202608170808.txxj5kR9-lkp@intel.com/

All errors (new ones prefixed by >>):

>> arch/arm64/kernel/ptrace.c:2461:13: error: conflicting types for 'update_syscall_orig_x0_after_ptrace'; have 'void(struct pt_regs *)'
    2461 | static void update_syscall_orig_x0_after_ptrace(struct pt_regs *regs)
         |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   arch/arm64/kernel/ptrace.c:563:13: note: previous definition of 'update_syscall_orig_x0_after_ptrace' with type 'void(struct task_struct *)'
     563 | static void update_syscall_orig_x0_after_ptrace(struct task_struct *target)
         |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


vim +2461 arch/arm64/kernel/ptrace.c

3157858feff8919 AKASHI Takahiro 2014-04-30  2460  
f579bf33f3c09c9 Will Deacon     2026-07-14 @2461  static void update_syscall_orig_x0_after_ptrace(struct pt_regs *regs)
f579bf33f3c09c9 Will Deacon     2026-07-14  2462  {
f579bf33f3c09c9 Will Deacon     2026-07-14  2463  	/*
f579bf33f3c09c9 Will Deacon     2026-07-14  2464  	 * Keep orig_x0 authoritative so that seccomp (via
f579bf33f3c09c9 Will Deacon     2026-07-14  2465  	 * syscall_get_arguments()), audit and the restart path all see the same
f579bf33f3c09c9 Will Deacon     2026-07-14  2466  	 * first argument the syscall is dispatched with, even if it has been
f579bf33f3c09c9 Will Deacon     2026-07-14  2467  	 * updated by a tracer. Skip this for NO_SYSCALL (set either by the user
f579bf33f3c09c9 Will Deacon     2026-07-14  2468  	 * or the tracer), as regs[0] holds the return value (see the comment in
f579bf33f3c09c9 Will Deacon     2026-07-14  2469  	 * el0_svc_common()) and can be unwound using syscall_rollback().
f579bf33f3c09c9 Will Deacon     2026-07-14  2470  	 * For compat tasks, orig_r0 is provided directly through GPR index 17.
f579bf33f3c09c9 Will Deacon     2026-07-14  2471  	 */
f579bf33f3c09c9 Will Deacon     2026-07-14  2472  	if (!is_compat_task() && regs->syscallno != NO_SYSCALL)
f579bf33f3c09c9 Will Deacon     2026-07-14  2473  		regs->orig_x0 = regs->regs[0];
f579bf33f3c09c9 Will Deacon     2026-07-14  2474  }
f579bf33f3c09c9 Will Deacon     2026-07-14  2475  

--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

             reply	other threads:[~2026-08-17  6:22 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-17  6:21 kernel test robot [this message]
  -- strict thread matches above, loose matches on Subject: below --
2026-07-14 14:35 [PATCH] arm64: syscall: Ensure saved x0 is kept in-sync with tracer updates Will Deacon
2026-07-15 11:39 ` Jinjie Ruan
2026-07-15 13:16   ` Will Deacon
2026-07-16  2:09     ` Jinjie Ruan
2026-07-16 11:50       ` Will Deacon
2026-07-16  2:57 ` Jinjie Ruan
2026-07-16  3:05   ` Kees Cook
2026-07-16  3:25     ` Jinjie Ruan
2026-07-16 11:53   ` Will Deacon
2026-07-16 12:04     ` Jinjie Ruan
2026-08-20  6:54 ` kernel test robot
2026-08-20 11:25 ` kernel test robot

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=202608170808.txxj5kR9-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=oe-kbuild@lists.linux.dev \
    /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.