Re: [PATCH bpf-next v3 09/13] bpf: Migrate bpf_task_work_schedule_* kfuncs to KF_IMPLICIT_ARGS

From: Alexei Starovoitov

Date: Tue Jan 20 2026 - 19:28:27 EST


On Tue, Jan 20, 2026 at 2:27 PM Ihor Solodrai <ihor.solodrai@xxxxxxxxx> wrote:
>
> return 0;
> - bpf_task_work_schedule_signal_impl(task, &work->tw, &arrmap, process_work, NULL);
> +
> + bpf_task_work_schedule_signal(task, &work->tw, &arrmap, process_work);
> +
> return 0;
> }
>
> @@ -102,6 +105,8 @@ int oncpu_lru_map(struct pt_regs *args)
> work = bpf_map_lookup_elem(&lrumap, &key);
> if (!work || work->data[0])
> return 0;
> - bpf_task_work_schedule_resume_impl(task, &work->tw, &lrumap, process_work, NULL);
> +
> + bpf_task_work_schedule_resume(task, &work->tw, &lrumap, process_work);
> +
> return 0;

I removed extra empty lines, since they don't fit the style
of these tests.
While applying.