* [thomas-weissschuh:b4/auxclock-nanosleep 32/52] kernel/time/hrtimer.c:599:27: error: implicit declaration of function 'hrtimer_time_to_monotonic'
@ 2026-06-09 12:11 kernel test robot
0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2026-06-09 12:11 UTC (permalink / raw)
To: Thomas Weißschuh ; +Cc: oe-kbuild-all
tree: https://git.kernel.org/pub/scm/linux/kernel/git/thomas.weissschuh/linux.git b4/auxclock-nanosleep
head: bca5a81b57571c48bb81e7225cb1e4248f98b346
commit: 7a200ad6980105f50270ca602d25d2960bfd63f6 [32/52] helper
config: alpha-allnoconfig (https://download.01.org/0day-ci/archive/20260609/202606092006.deELhSAv-lkp@intel.com/config)
compiler: alpha-linux-gcc (GCC) 16.1.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260609/202606092006.deELhSAv-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/202606092006.deELhSAv-lkp@intel.com/
All errors (new ones prefixed by >>):
kernel/time/hrtimer.c: In function 'hrtimer_bases_first':
>> kernel/time/hrtimer.c:599:27: error: implicit declaration of function 'hrtimer_time_to_monotonic' [-Wimplicit-function-declaration]
599 | expires = hrtimer_time_to_monotonic(base, base->expires_next);
| ^~~~~~~~~~~~~~~~~~~~~~~~~
vim +/hrtimer_time_to_monotonic +599 kernel/time/hrtimer.c
590
591 /* Find the base with the earliest expiry */
592 static void hrtimer_bases_first(struct hrtimer_cpu_base *cpu_base,unsigned int active,
593 ktime_t *expires_next, struct hrtimer **next_timer)
594 {
595 struct hrtimer_clock_base *base;
596 ktime_t expires;
597
598 for_each_active_base(base, cpu_base, active) {
> 599 expires = hrtimer_time_to_monotonic(base, base->expires_next);
600 if (expires < *expires_next) {
601 *expires_next = expires;
602 *next_timer = clock_base_next_timer(base);
603 }
604 }
605 }
606
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2026-06-09 12:11 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-09 12:11 [thomas-weissschuh:b4/auxclock-nanosleep 32/52] kernel/time/hrtimer.c:599:27: error: implicit declaration of function 'hrtimer_time_to_monotonic' kernel test robot
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.