All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH bpf-next v1 06/11] bpf: Report may_goto timeout to BPF stderr
Date: Thu, 8 May 2025 20:53:21 +0800	[thread overview]
Message-ID: <202505082019.euW3a7Kk-lkp@intel.com> (raw)
In-Reply-To: <20250507171720.1958296-7-memxor@gmail.com>

Hi Kumar,

kernel test robot noticed the following build errors:

[auto build test ERROR on 43745d11bfd9683abdf08ad7a5cc403d6a9ffd15]

url:    https://github.com/intel-lab-lkp/linux/commits/Kumar-Kartikeya-Dwivedi/bpf-Introduce-bpf_dynptr_from_mem_slice/20250508-012020
base:   43745d11bfd9683abdf08ad7a5cc403d6a9ffd15
patch link:    https://lore.kernel.org/r/20250507171720.1958296-7-memxor%40gmail.com
patch subject: [PATCH bpf-next v1 06/11] bpf: Report may_goto timeout to BPF stderr
config: microblaze-defconfig (https://download.01.org/0day-ci/archive/20250508/202505082019.euW3a7Kk-lkp@intel.com/config)
compiler: microblaze-linux-gcc (GCC) 14.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250508/202505082019.euW3a7Kk-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/202505082019.euW3a7Kk-lkp@intel.com/

All errors (new ones prefixed by >>):

   microblaze-linux-ld: kernel/bpf/core.o: in function `bpf_prog_report_may_goto_violation':
>> kernel/bpf/core.c:3166:(.text+0x6e08): undefined reference to `bpf_prog_stream_error_limit'
>> microblaze-linux-ld: kernel/bpf/core.c:3166:(.text+0x6e28): undefined reference to `bpf_stream_stage_init'
>> microblaze-linux-ld: kernel/bpf/core.c:3166:(.text+0x6e3c): undefined reference to `bpf_stream_stage_printk'
>> microblaze-linux-ld: kernel/bpf/core.c:3166:(.text+0x6e48): undefined reference to `bpf_stream_stage_dump_stack'
>> microblaze-linux-ld: kernel/bpf/core.c:3166:(.text+0x6e5c): undefined reference to `bpf_stream_stage_commit'
>> microblaze-linux-ld: kernel/bpf/core.c:3166:(.text+0x6e68): undefined reference to `bpf_stream_stage_free'


vim +3166 kernel/bpf/core.c

  3158	
  3159	static noinline void bpf_prog_report_may_goto_violation(void)
  3160	{
  3161		struct bpf_prog *prog;
  3162	
  3163		prog = bpf_prog_find_from_stack();
  3164		if (!prog)
  3165			return;
> 3166		bpf_stream_stage(prog, BPF_STDERR, ({
  3167			bpf_stream_printk("ERROR: Timeout detected for may_goto instruction\n");
  3168			bpf_stream_dump_stack();
  3169		}));
  3170	}
  3171	

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

  reply	other threads:[~2025-05-08 12:54 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-07 17:17 [PATCH bpf-next v1 00/11] BPF Standard Streams Kumar Kartikeya Dwivedi
2025-05-07 17:17 ` [PATCH bpf-next v1 01/11] bpf: Introduce bpf_dynptr_from_mem_slice Kumar Kartikeya Dwivedi
2025-05-09 17:19   ` Eduard Zingerman
2025-05-09 21:11   ` Andrii Nakryiko
2025-05-07 17:17 ` [PATCH bpf-next v1 02/11] bpf: Introduce BPF standard streams Kumar Kartikeya Dwivedi
2025-05-08 23:54   ` Eduard Zingerman
2025-05-09  0:10     ` Kumar Kartikeya Dwivedi
2025-05-07 17:17 ` [PATCH bpf-next v1 03/11] bpf: Add function to extract program source info Kumar Kartikeya Dwivedi
2025-05-08 10:30   ` kernel test robot
2025-05-08 20:15   ` Eduard Zingerman
2025-05-08 23:32     ` Kumar Kartikeya Dwivedi
2025-05-09 21:17   ` Andrii Nakryiko
2025-05-07 17:17 ` [PATCH bpf-next v1 04/11] bpf: Add function to find program from stack trace Kumar Kartikeya Dwivedi
2025-05-08 23:07   ` Eduard Zingerman
2025-05-08 23:29     ` Kumar Kartikeya Dwivedi
2025-05-07 17:17 ` [PATCH bpf-next v1 05/11] bpf: Add dump_stack() analogue to print to BPF stderr Kumar Kartikeya Dwivedi
2025-05-08 22:38   ` Eduard Zingerman
2025-05-08 23:29     ` Kumar Kartikeya Dwivedi
2025-05-07 17:17 ` [PATCH bpf-next v1 06/11] bpf: Report may_goto timeout " Kumar Kartikeya Dwivedi
2025-05-08 12:53   ` kernel test robot [this message]
2025-05-09  6:22   ` Eduard Zingerman
2025-05-09  9:19   ` Alan Maguire
2025-05-07 17:17 ` [PATCH bpf-next v1 07/11] bpf: Report rqspinlock deadlocks/timeout " Kumar Kartikeya Dwivedi
2025-05-07 17:17 ` [PATCH bpf-next v1 08/11] bpf: Report arena faults " Kumar Kartikeya Dwivedi
2025-05-09 19:28   ` Eduard Zingerman
2025-05-09 20:01     ` Kumar Kartikeya Dwivedi
2025-05-09 20:07       ` Eduard Zingerman
2025-05-09 20:10         ` Kumar Kartikeya Dwivedi
2025-05-09 20:17           ` Eduard Zingerman
2025-05-07 17:17 ` [PATCH bpf-next v1 09/11] libbpf: Add bpf_stream_printk() macro Kumar Kartikeya Dwivedi
2025-05-08 23:31   ` Eduard Zingerman
2025-05-08 23:33     ` Kumar Kartikeya Dwivedi
2025-05-09  6:16       ` Eduard Zingerman
2025-05-09 21:28         ` Andrii Nakryiko
2025-05-08 23:41   ` Alexei Starovoitov
2025-05-08 23:48     ` Kumar Kartikeya Dwivedi
2025-05-08 23:50       ` Kumar Kartikeya Dwivedi
2025-05-09 21:26   ` Andrii Nakryiko
2025-05-07 17:17 ` [PATCH bpf-next v1 10/11] bpftool: Add support for dumping streams Kumar Kartikeya Dwivedi
2025-05-08 10:41   ` Quentin Monnet
2025-05-08 23:41     ` Kumar Kartikeya Dwivedi
2025-05-09  6:21   ` Eduard Zingerman
2025-05-09 17:31     ` Alexei Starovoitov
2025-05-09 18:31       ` Eduard Zingerman
2025-05-09 18:48         ` Alexei Starovoitov
2025-05-09 19:37           ` Eduard Zingerman
2025-05-09 19:50             ` Kumar Kartikeya Dwivedi
2025-05-09 21:33           ` Andrii Nakryiko
2025-05-12 20:51             ` Kumar Kartikeya Dwivedi
2025-05-12 21:35               ` Andrii Nakryiko
2025-05-12 21:50               ` Alexei Starovoitov
2025-05-12 21:56                 ` Kumar Kartikeya Dwivedi
2025-05-12 22:07                   ` Alexei Starovoitov
2025-05-07 17:17 ` [PATCH bpf-next v1 11/11] selftests/bpf: Add tests for prog streams Kumar Kartikeya Dwivedi
2025-05-09 17:18   ` Eduard Zingerman

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=202505082019.euW3a7Kk-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=memxor@gmail.com \
    --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.