From: kernel test robot <lkp@intel.com>
To: Brian Ruley <brian.ruley@gehealthcare.com>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [RFC PATCH] test: mm/arm: pgtable: remove young bit check for pte_valid_user
Date: Wed, 15 Apr 2026 20:04:27 +0800 [thread overview]
Message-ID: <202604152036.dETGeqQ0-lkp@intel.com> (raw)
In-Reply-To: <20260410114336.983057-1-brian.ruley@gehealthcare.com>
Hi Brian,
[This is a private test report for your RFC patch.]
kernel test robot noticed the following build warnings:
[auto build test WARNING on arm/for-next]
[also build test WARNING on akpm-mm/mm-everything arm-perf/for-next/perf arm64/for-next/core linus/master arm/fixes v7.0 next-20260414]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Brian-Ruley/test-mm-arm-pgtable-remove-young-bit-check-for-pte_valid_user/20260414-235000
base: git://git.armlinux.org.uk/~rmk/linux-arm.git for-next
patch link: https://lore.kernel.org/r/20260410114336.983057-1-brian.ruley%40gehealthcare.com
patch subject: [RFC PATCH] test: mm/arm: pgtable: remove young bit check for pte_valid_user
config: arc-allyesconfig (https://download.01.org/0day-ci/archive/20260415/202604152036.dETGeqQ0-lkp@intel.com/config)
compiler: arc-linux-gcc (GCC) 15.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260415/202604152036.dETGeqQ0-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/oe-kbuild-all/202604152036.dETGeqQ0-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> mm/migrate.c:64:6: warning: no previous prototype for 'migrate_exec_log_add' [-Wmissing-prototypes]
64 | void migrate_exec_log_add(unsigned long addr, unsigned long old_pfn,
| ^~~~~~~~~~~~~~~~~~~~
>> mm/migrate.c:79:6: warning: no previous prototype for 'migrate_exec_log_dump' [-Wmissing-prototypes]
79 | void migrate_exec_log_dump(unsigned long fault_addr)
| ^~~~~~~~~~~~~~~~~~~~~
vim +/migrate_exec_log_add +64 mm/migrate.c
63
> 64 void migrate_exec_log_add(unsigned long addr, unsigned long old_pfn,
65 unsigned long new_pfn, bool flushed)
66 {
67 unsigned int idx = __this_cpu_read(migrate_exec_idx);
68 struct migrate_exec_entry *log = this_cpu_ptr(migrate_exec_log);
69 struct migrate_exec_entry *e = &log[idx];
70
71 e->addr = addr;
72 e->old_pfn = old_pfn;
73 e->new_pfn = new_pfn;
74 e->pid = current->pid;
75 e->flushed = flushed;
76 __this_cpu_write(migrate_exec_idx, (idx + 1) % MIGRATE_EXEC_LOG_SIZE);
77 }
78
> 79 void migrate_exec_log_dump(unsigned long fault_addr)
80 {
81 int cpu;
82
83 pr_err("SIGILL at %lx pid %d, recent exec migrations:\n",
84 fault_addr, current->pid);
85 for_each_online_cpu(cpu) {
86 struct migrate_exec_entry *log = per_cpu(migrate_exec_log, cpu);
87 int i;
88 for (i = 0; i < MIGRATE_EXEC_LOG_SIZE; i++) {
89 if (log[i].addr == 0)
90 continue;
91 pr_err(" cpu%d: addr=%lx old_pfn=%lx new_pfn=%lx pid=%d flushed=%d%s\n",
92 cpu, log[i].addr, log[i].old_pfn, log[i].new_pfn,
93 log[i].pid, log[i].flushed,
94 (PAGE_ALIGN(fault_addr) == PAGE_ALIGN(log[i].addr)) ?
95 " *** MATCH ***" : "");
96 }
97 }
98 }
99 #include "internal.h"
100 #include "swap.h"
101
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2026-04-15 12:05 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-09 12:54 [PATCH] mm/arm: pgtable: remove young bit check for pte_valid_user Brian Ruley
2026-04-09 13:56 ` Will Deacon
2026-04-09 14:21 ` Russell King (Oracle)
2026-04-09 14:43 ` Russell King (Oracle)
2026-04-09 15:17 ` Brian Ruley
2026-04-09 16:00 ` Russell King (Oracle)
2026-04-10 11:01 ` Brian Ruley
2026-04-10 11:18 ` Russell King (Oracle)
2026-04-10 11:43 ` [RFC PATCH] test: " Brian Ruley
2026-04-15 8:53 ` kernel test robot
2026-04-15 12:04 ` kernel test robot [this message]
2026-04-15 13:41 ` kernel test robot
2026-04-13 10:58 ` [PATCH] " Will Deacon
2026-04-13 11:17 ` Brian Ruley
2026-04-13 14:42 ` Russell King (Oracle)
2026-04-13 15:24 ` Brian Ruley
2026-04-14 6:28 ` Brian Ruley
2026-04-14 7:44 ` Brian Ruley
2026-04-14 11:08 ` Will Deacon
2026-04-14 11:43 ` Brian Ruley
2026-04-09 14:15 ` Russell King (Oracle)
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=202604152036.dETGeqQ0-lkp@intel.com \
--to=lkp@intel.com \
--cc=brian.ruley@gehealthcare.com \
--cc=oe-kbuild-all@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.