From: kernel test robot <lkp@intel.com>
To: Mykyta Yatsenko <mykyta.yatsenko5@gmail.com>,
bpf@vger.kernel.org, ast@kernel.org, andrii@kernel.org,
daniel@iogearbox.net, kafai@meta.com, kernel-team@meta.com,
eddyz87@gmail.com, memxor@gmail.com
Cc: oe-kbuild-all@lists.linux.dev,
Mykyta Yatsenko <yatsenko@meta.com>,
Peter Zijlstra <peterz@infradead.org>,
Steven Rostedt <rostedt@goodmis.org>
Subject: Re: [PATCH bpf-next v6 3/6] bpf: Add sleepable support for classic tracepoint programs
Date: Fri, 27 Mar 2026 19:35:22 +0800 [thread overview]
Message-ID: <202603271953.AkWFtw6W-lkp@intel.com> (raw)
In-Reply-To: <20260325-sleepable_tracepoints-v6-3-2b182dacea13@meta.com>
Hi Mykyta,
kernel test robot noticed the following build errors:
[auto build test ERROR on 6c8e1a9eee0fec802b542dadf768c30c2a183b3c]
url: https://github.com/intel-lab-lkp/linux/commits/Mykyta-Yatsenko/bpf-Add-sleepable-support-for-raw-tracepoint-programs/20260327-132324
base: 6c8e1a9eee0fec802b542dadf768c30c2a183b3c
patch link: https://lore.kernel.org/r/20260325-sleepable_tracepoints-v6-3-2b182dacea13%40meta.com
patch subject: [PATCH bpf-next v6 3/6] bpf: Add sleepable support for classic tracepoint programs
config: x86_64-randconfig-103-20260327 (https://download.01.org/0day-ci/archive/20260327/202603271953.AkWFtw6W-lkp@intel.com/config)
compiler: gcc-14 (Debian 14.2.0-19) 14.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260327/202603271953.AkWFtw6W-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/202603271953.AkWFtw6W-lkp@intel.com/
All errors (new ones prefixed by >>):
In file included from include/linux/security.h:35,
from include/linux/perf_event.h:53,
from include/linux/trace_events.h:10,
from include/trace/syscall.h:7,
from include/linux/syscalls.h:95,
from include/linux/syscalls_api.h:1,
from kernel/sched/sched.h:64,
from kernel/sched/rq-offsets.c:5:
>> include/linux/bpf.h:3363:20: error: static declaration of 'bpf_prog_inc_misses_counter' follows non-static declaration
3363 | static inline void bpf_prog_inc_misses_counter(struct bpf_prog *prog)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
include/linux/bpf.h:2489:14: note: previous declaration of 'bpf_prog_inc_misses_counter' with type 'void(struct bpf_prog *)'
2489 | void notrace bpf_prog_inc_misses_counter(struct bpf_prog *prog);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
make[3]: *** [scripts/Makefile.build:184: kernel/sched/rq-offsets.s] Error 1
make[3]: Target 'prepare' not remade because of errors.
make[2]: *** [Makefile:1333: prepare0] Error 2
make[2]: Target 'prepare' not remade because of errors.
make[1]: *** [Makefile:248: __sub-make] Error 2
make[1]: Target 'prepare' not remade because of errors.
make: *** [Makefile:248: __sub-make] Error 2
make: Target 'prepare' not remade because of errors.
vim +/bpf_prog_inc_misses_counter +3363 include/linux/bpf.h
05b24ff9b2cfab Jiri Olsa 2022-09-16 3362
05b24ff9b2cfab Jiri Olsa 2022-09-16 @3363 static inline void bpf_prog_inc_misses_counter(struct bpf_prog *prog)
05b24ff9b2cfab Jiri Olsa 2022-09-16 3364 {
05b24ff9b2cfab Jiri Olsa 2022-09-16 3365 }
c4bcfb38a95edb Yonghong Song 2022-10-25 3366
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2026-03-27 11:35 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-25 18:55 [PATCH bpf-next v6 0/6] bpf: Add support for sleepable tracepoint programs Mykyta Yatsenko
2026-03-25 18:55 ` [PATCH bpf-next v6 1/6] bpf: Add sleepable support for raw " Mykyta Yatsenko
2026-03-26 16:38 ` Kumar Kartikeya Dwivedi
2026-03-25 18:55 ` [PATCH bpf-next v6 2/6] bpf: Rename bpf_prog_run_array_uprobe() to bpf_prog_run_array_sleepable() Mykyta Yatsenko
2026-03-26 16:39 ` Kumar Kartikeya Dwivedi
2026-03-25 18:55 ` [PATCH bpf-next v6 3/6] bpf: Add sleepable support for classic tracepoint programs Mykyta Yatsenko
2026-03-26 16:46 ` Kumar Kartikeya Dwivedi
2026-03-27 11:35 ` kernel test robot [this message]
2026-03-27 12:18 ` kernel test robot
2026-03-25 18:55 ` [PATCH bpf-next v6 4/6] bpf: Verifier support for sleepable " Mykyta Yatsenko
2026-03-26 16:49 ` Kumar Kartikeya Dwivedi
2026-03-25 18:55 ` [PATCH bpf-next v6 5/6] libbpf: Add section handlers for sleepable tracepoints Mykyta Yatsenko
2026-03-26 16:49 ` Kumar Kartikeya Dwivedi
2026-03-25 18:55 ` [PATCH bpf-next v6 6/6] selftests/bpf: Add tests for sleepable tracepoint programs Mykyta Yatsenko
2026-03-26 16:53 ` Kumar Kartikeya Dwivedi
2026-03-26 16:52 ` [PATCH bpf-next v6 0/6] bpf: Add support " Kumar Kartikeya Dwivedi
-- strict thread matches above, loose matches on Subject: below --
2026-03-24 19:03 Mykyta Yatsenko
2026-03-24 19:03 ` [PATCH bpf-next v6 3/6] bpf: Add sleepable support for classic " Mykyta Yatsenko
2026-03-24 19:56 ` Alexei Starovoitov
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=202603271953.AkWFtw6W-lkp@intel.com \
--to=lkp@intel.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=eddyz87@gmail.com \
--cc=kafai@meta.com \
--cc=kernel-team@meta.com \
--cc=memxor@gmail.com \
--cc=mykyta.yatsenko5@gmail.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=peterz@infradead.org \
--cc=rostedt@goodmis.org \
--cc=yatsenko@meta.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