cgroups.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Tiffany Yang <ynaffit@google.com>
Cc: oe-kbuild-all@lists.linux.dev, cgroups@vger.kernel.org,
	Tejun Heo <tj@kernel.org>
Subject: [tj-cgroup:for-6.18 7/8] kernel/cgroup/cgroup.c:3781:undefined reference to `__aeabi_uldivmod'
Date: Sat, 23 Aug 2025 06:45:06 +0800	[thread overview]
Message-ID: <202508230604.KyvqOy81-lkp@intel.com> (raw)

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git for-6.18
head:   7b281a4582c4408add22cc99f221886b50dd0548
commit: afa3701c0e45ecb9e4d160048ca4e353c7489948 [7/8] cgroup: cgroup.stat.local time accounting
config: arm-randconfig-002-20250823 (https://download.01.org/0day-ci/archive/20250823/202508230604.KyvqOy81-lkp@intel.com/config)
compiler: arm-linux-gnueabi-gcc (GCC) 15.1.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250823/202508230604.KyvqOy81-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/202508230604.KyvqOy81-lkp@intel.com/

All errors (new ones prefixed by >>):

   arm-linux-gnueabi-ld: kernel/cgroup/cgroup.o: in function `cgroup_core_local_stat_show':
>> kernel/cgroup/cgroup.c:3781:(.text+0x28f4): undefined reference to `__aeabi_uldivmod'
   arm-linux-gnueabi-ld: (__aeabi_uldivmod): Unknown destination type (ARM/Thumb) in kernel/cgroup/cgroup.o
>> kernel/cgroup/cgroup.c:3781:(.text+0x28f4): dangerous relocation: unsupported relocation


vim +3781 kernel/cgroup/cgroup.c

  3765	
  3766	static int cgroup_core_local_stat_show(struct seq_file *seq, void *v)
  3767	{
  3768		struct cgroup *cgrp = seq_css(seq)->cgroup;
  3769		unsigned int sequence;
  3770		u64 freeze_time;
  3771	
  3772		do {
  3773			sequence = read_seqcount_begin(&cgrp->freezer.freeze_seq);
  3774			freeze_time = cgrp->freezer.frozen_nsec;
  3775			/* Add in current freezer interval if the cgroup is freezing. */
  3776			if (test_bit(CGRP_FREEZE, &cgrp->flags))
  3777				freeze_time += (ktime_get_ns() -
  3778						cgrp->freezer.freeze_start_nsec);
  3779		} while (read_seqcount_retry(&cgrp->freezer.freeze_seq, sequence));
  3780	
> 3781		seq_printf(seq, "frozen_usec %llu\n",
  3782			   (unsigned long long) freeze_time / NSEC_PER_USEC);
  3783	
  3784		return 0;
  3785	}
  3786	

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

                 reply	other threads:[~2025-08-22 22:45 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=202508230604.KyvqOy81-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=cgroups@vger.kernel.org \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=tj@kernel.org \
    --cc=ynaffit@google.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).