From: kernel test robot <lkp@intel.com>
To: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Cc: oe-kbuild-all@lists.linux.dev
Subject: [linux-next:master 11811/12740] drivers/firewire/core-transaction.c:1255: undefined reference to `__aeabi_uldivmod'
Date: Sat, 27 Sep 2025 04:37:18 +0800 [thread overview]
Message-ID: <202509270428.FZaO2PPq-lkp@intel.com> (raw)
tree: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head: 262858079afde6d367ce3db183c74d8a43a0e83f
commit: 8ec6a8ec23b9529d6203cab50a22fab3a5fd0d80 [11811/12740] firewire: core: suppress overflow warning when computing jiffies from isochronous cycle
config: arm-randconfig-003-20250927 (https://download.01.org/0day-ci/archive/20250927/202509270428.FZaO2PPq-lkp@intel.com/config)
compiler: arm-linux-gnueabi-gcc (GCC) 8.5.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250927/202509270428.FZaO2PPq-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/202509270428.FZaO2PPq-lkp@intel.com/
All errors (new ones prefixed by >>):
arm-linux-gnueabi-ld: drivers/firewire/core-transaction.o: in function `update_split_timeout':
>> drivers/firewire/core-transaction.c:1255: undefined reference to `__aeabi_uldivmod'
vim +1255 drivers/firewire/core-transaction.c
473d28c730e2de drivers/firewire/fw-transaction.c Kristian Høgsberg 2007-03-07 1239
ae57988f68acdc drivers/firewire/fw-transaction.c Stefan Richter 2007-08-02 1240 static const struct fw_address_region registers_region =
cca6097713c62e drivers/firewire/fw-transaction.c Jarod Wilson 2008-03-08 1241 { .start = CSR_REGISTER_BASE,
cca6097713c62e drivers/firewire/fw-transaction.c Jarod Wilson 2008-03-08 1242 .end = CSR_REGISTER_BASE | CSR_CONFIG_ROM, };
d60d7f1d5ce83d drivers/firewire/fw-transaction.c Kristian Høgsberg 2007-03-07 1243
8e4b50f94e8c14 drivers/firewire/core-transaction.c Clemens Ladisch 2010-06-10 1244 static void update_split_timeout(struct fw_card *card)
b5725cfa4120a4 drivers/firewire/core-transaction.c Takashi Sakamoto 2025-09-16 1245 __must_hold(&card->split_timeout.lock)
8e4b50f94e8c14 drivers/firewire/core-transaction.c Clemens Ladisch 2010-06-10 1246 {
8e4b50f94e8c14 drivers/firewire/core-transaction.c Clemens Ladisch 2010-06-10 1247 unsigned int cycles;
8e4b50f94e8c14 drivers/firewire/core-transaction.c Clemens Ladisch 2010-06-10 1248
b5725cfa4120a4 drivers/firewire/core-transaction.c Takashi Sakamoto 2025-09-16 1249 cycles = card->split_timeout.hi * 8000 + (card->split_timeout.lo >> 19);
8e4b50f94e8c14 drivers/firewire/core-transaction.c Clemens Ladisch 2010-06-10 1250
4ec4a67aa10026 drivers/firewire/core-transaction.c Stefan Richter 2011-09-19 1251 /* minimum per IEEE 1394, maximum which doesn't overflow OHCI */
4ec4a67aa10026 drivers/firewire/core-transaction.c Stefan Richter 2011-09-19 1252 cycles = clamp(cycles, 800u, 3u * 8000u);
8e4b50f94e8c14 drivers/firewire/core-transaction.c Clemens Ladisch 2010-06-10 1253
b5725cfa4120a4 drivers/firewire/core-transaction.c Takashi Sakamoto 2025-09-16 1254 card->split_timeout.cycles = cycles;
b5725cfa4120a4 drivers/firewire/core-transaction.c Takashi Sakamoto 2025-09-16 @1255 card->split_timeout.jiffies = isoc_cycles_to_jiffies(cycles);
8e4b50f94e8c14 drivers/firewire/core-transaction.c Clemens Ladisch 2010-06-10 1256 }
8e4b50f94e8c14 drivers/firewire/core-transaction.c Clemens Ladisch 2010-06-10 1257
:::::: The code at line 1255 was first introduced by commit
:::::: b5725cfa4120a4d234ab112aad151d731531d093 firewire: core: use spin lock specific to timer for split transaction
:::::: TO: Takashi Sakamoto <o-takashi@sakamocchi.jp>
:::::: CC: Takashi Sakamoto <o-takashi@sakamocchi.jp>
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
reply other threads:[~2025-09-26 20:37 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=202509270428.FZaO2PPq-lkp@intel.com \
--to=lkp@intel.com \
--cc=o-takashi@sakamocchi.jp \
--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.