All of lore.kernel.org
 help / color / mirror / Atom feed
* lib/stackdepot.c:331: undefined reference to `__irqentry_text_start'
@ 2020-05-07 16:10 ` kbuild test robot
  0 siblings, 0 replies; 2+ messages in thread
From: kbuild test robot @ 2020-05-07 16:10 UTC (permalink / raw)
  To: Alexander Potapenko
  Cc: kbuild-all, linux-kernel, Andrew Morton, Linux Memory Management List

[-- Attachment #1: Type: text/plain, Size: 2228 bytes --]

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   a811c1fa0a02c062555b54651065899437bacdbe
commit: 505a0ef15f96c6c43ec719c9fc1833d98957bb39 kasan: stackdepot: move filter_irq_stacks() to stackdepot.c
date:   4 weeks ago
config: arc-randconfig-r034-20200507 (attached as .config)
compiler: arc-elf-gcc (GCC) 9.3.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        git checkout 505a0ef15f96c6c43ec719c9fc1833d98957bb39
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=arc 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   arc-elf-ld: lib/stackdepot.o: in function `filter_irq_stacks':
>> lib/stackdepot.c:331: undefined reference to `__irqentry_text_start'
>> arc-elf-ld: lib/stackdepot.c:331: undefined reference to `__irqentry_text_start'
   arc-elf-ld: lib/stackdepot.o: in function `in_irqentry_text':
>> lib/stackdepot.c:323: undefined reference to `__irqentry_text_end'
>> arc-elf-ld: lib/stackdepot.c:323: undefined reference to `__irqentry_text_end'
>> arc-elf-ld: lib/stackdepot.c:324: undefined reference to `__softirqentry_text_start'
>> arc-elf-ld: lib/stackdepot.c:324: undefined reference to `__softirqentry_text_start'
>> arc-elf-ld: lib/stackdepot.c:325: undefined reference to `__softirqentry_text_end'
>> arc-elf-ld: lib/stackdepot.c:325: undefined reference to `__softirqentry_text_end'

vim +331 lib/stackdepot.c

   320	
   321	static inline int in_irqentry_text(unsigned long ptr)
   322	{
 > 323		return (ptr >= (unsigned long)&__irqentry_text_start &&
 > 324			ptr < (unsigned long)&__irqentry_text_end) ||
 > 325			(ptr >= (unsigned long)&__softirqentry_text_start &&
   326			 ptr < (unsigned long)&__softirqentry_text_end);
   327	}
   328	
   329	unsigned int filter_irq_stacks(unsigned long *entries,
   330						     unsigned int nr_entries)
 > 331	{

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 30684 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* lib/stackdepot.c:331: undefined reference to `__irqentry_text_start'
@ 2020-05-07 16:10 ` kbuild test robot
  0 siblings, 0 replies; 2+ messages in thread
From: kbuild test robot @ 2020-05-07 16:10 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 2277 bytes --]

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   a811c1fa0a02c062555b54651065899437bacdbe
commit: 505a0ef15f96c6c43ec719c9fc1833d98957bb39 kasan: stackdepot: move filter_irq_stacks() to stackdepot.c
date:   4 weeks ago
config: arc-randconfig-r034-20200507 (attached as .config)
compiler: arc-elf-gcc (GCC) 9.3.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        git checkout 505a0ef15f96c6c43ec719c9fc1833d98957bb39
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=arc 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   arc-elf-ld: lib/stackdepot.o: in function `filter_irq_stacks':
>> lib/stackdepot.c:331: undefined reference to `__irqentry_text_start'
>> arc-elf-ld: lib/stackdepot.c:331: undefined reference to `__irqentry_text_start'
   arc-elf-ld: lib/stackdepot.o: in function `in_irqentry_text':
>> lib/stackdepot.c:323: undefined reference to `__irqentry_text_end'
>> arc-elf-ld: lib/stackdepot.c:323: undefined reference to `__irqentry_text_end'
>> arc-elf-ld: lib/stackdepot.c:324: undefined reference to `__softirqentry_text_start'
>> arc-elf-ld: lib/stackdepot.c:324: undefined reference to `__softirqentry_text_start'
>> arc-elf-ld: lib/stackdepot.c:325: undefined reference to `__softirqentry_text_end'
>> arc-elf-ld: lib/stackdepot.c:325: undefined reference to `__softirqentry_text_end'

vim +331 lib/stackdepot.c

   320	
   321	static inline int in_irqentry_text(unsigned long ptr)
   322	{
 > 323		return (ptr >= (unsigned long)&__irqentry_text_start &&
 > 324			ptr < (unsigned long)&__irqentry_text_end) ||
 > 325			(ptr >= (unsigned long)&__softirqentry_text_start &&
   326			 ptr < (unsigned long)&__softirqentry_text_end);
   327	}
   328	
   329	unsigned int filter_irq_stacks(unsigned long *entries,
   330						     unsigned int nr_entries)
 > 331	{

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 30684 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-05-07 16:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-07 16:10 lib/stackdepot.c:331: undefined reference to `__irqentry_text_start' kbuild test robot
2020-05-07 16:10 ` kbuild 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.