From: kernel test robot <lkp@intel.com>
To: "Joel Fernandes (Google)" <joel@joelfernandes.org>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH RFC v2] rcu: Add a minimum time for marking boot as completed
Date: Sat, 25 Feb 2023 19:55:41 +0800 [thread overview]
Message-ID: <202302251903.JJF7dBwl-lkp@intel.com> (raw)
In-Reply-To: <20230225033421.3323164-1-joel@joelfernandes.org>
Hi Joel,
[FYI, it's a private test report for your RFC patch.]
[auto build test ERROR on paulmck-rcu/dev]
[also build test ERROR on linus/master v6.2 next-20230225]
[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/Joel-Fernandes-Google/rcu-Add-a-minimum-time-for-marking-boot-as-completed/20230225-113519
base: https://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
patch link: https://lore.kernel.org/r/20230225033421.3323164-1-joel%40joelfernandes.org
patch subject: [PATCH RFC v2] rcu: Add a minimum time for marking boot as completed
config: i386-randconfig-a003 (https://download.01.org/0day-ci/archive/20230225/202302251903.JJF7dBwl-lkp@intel.com/config)
compiler: gcc-11 (Debian 11.3.0-8) 11.3.0
reproduce (this is a W=1 build):
# https://github.com/intel-lab-lkp/linux/commit/e42e553f5b94f064331b1cff0af0ea6f55ffe1b4
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Joel-Fernandes-Google/rcu-Add-a-minimum-time-for-marking-boot-as-completed/20230225-113519
git checkout e42e553f5b94f064331b1cff0af0ea6f55ffe1b4
# save the config file
mkdir build_dir && cp config build_dir/.config
make W=1 O=build_dir ARCH=i386 olddefconfig
make W=1 O=build_dir ARCH=i386 SHELL=/bin/bash
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202302251903.JJF7dBwl-lkp@intel.com/
All errors (new ones prefixed by >>):
ld: kernel/rcu/update.o: in function `rcu_end_inkernel_boot':
>> kernel/rcu/update.c:246: undefined reference to `__udivdi3'
>> ld: kernel/rcu/update.c:246: undefined reference to `__udivdi3'
vim +246 kernel/rcu/update.c
242
243 void rcu_end_inkernel_boot(void)
244 {
245 if (boot_end_delay) {
> 246 u64 boot_ms = ktime_get_boot_fast_ns() / 1000000UL;
247
248 if (boot_ms < boot_end_delay) {
249 schedule_delayed_work(&boot_rcu_work,
250 boot_end_delay - boot_ms);
251 return;
252 }
253 }
254
255 rcu_unexpedite_gp();
256 rcu_async_relax();
257 if (rcu_normal_after_boot)
258 WRITE_ONCE(rcu_normal, 1);
259 rcu_boot_ended = true;
260 }
261
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
next prev parent reply other threads:[~2023-02-25 11:56 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-25 3:34 [PATCH RFC v2] rcu: Add a minimum time for marking boot as completed Joel Fernandes (Google)
2023-02-25 3:36 ` Randy Dunlap
2023-02-25 11:55 ` kernel test robot [this message]
2023-02-26 19:45 ` Frederic Weisbecker
2023-02-26 23:07 ` Joel Fernandes
2023-02-27 7:53 ` Zhuo, Qiuxu
2023-02-27 13:22 ` Joel Fernandes
2023-02-27 14:55 ` Paul E. McKenney
2023-02-27 15:16 ` Joel Fernandes
2023-02-27 18:06 ` Uladzislau Rezki
2023-02-27 18:15 ` Joel Fernandes
2023-02-27 18:20 ` Uladzislau Rezki
2023-02-27 18:27 ` Joel Fernandes
2023-02-27 18:57 ` Uladzislau Rezki
2023-02-27 19:10 ` Joel Fernandes
2023-02-27 23:05 ` Paul E. McKenney
2023-02-27 23:24 ` Joel Fernandes
2023-02-27 23:40 ` Frederic Weisbecker
2023-02-28 1:30 ` Joel Fernandes
2023-02-28 11:04 ` Frederic Weisbecker
2023-02-28 20:09 ` Joel Fernandes
2023-03-01 17:11 ` Frederic Weisbecker
2023-03-01 21:31 ` Joel Fernandes
2023-03-02 0:49 ` Paul E. McKenney
2023-03-02 1:08 ` Joel Fernandes
2023-03-02 1:19 ` Paul E. McKenney
2023-02-28 11:42 ` Uladzislau Rezki
2023-02-28 6:40 ` Zhuo, Qiuxu
2023-02-28 14:27 ` Joel Fernandes
2023-03-01 1:34 ` Zhuo, Qiuxu
2023-03-01 15:57 ` Joel Fernandes
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=202302251903.JJF7dBwl-lkp@intel.com \
--to=lkp@intel.com \
--cc=joel@joelfernandes.org \
--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.