From: Yonghong Song <yhs@fb.com>
To: Matteo Croce <mcroce@linux.microsoft.com>, <bpf@vger.kernel.org>
Cc: <linux-kernel@vger.kernel.org>,
Alexei Starovoitov <ast@kernel.org>,
Daniel Borkmann <daniel@iogearbox.net>,
Andrii Nakryiko <andrii@kernel.org>
Subject: Re: [PATCH bpf] bpf: update bpf_get_smp_processor_id() documentation
Date: Tue, 14 Sep 2021 16:01:36 -0700 [thread overview]
Message-ID: <322d781e-3e69-aa5f-7b99-5c8bc768e87b@fb.com> (raw)
In-Reply-To: <20210914222306.52522-1-mcroce@linux.microsoft.com>
On 9/14/21 3:23 PM, Matteo Croce wrote:
> From: Matteo Croce <mcroce@microsoft.com>
>
> Since commit 1e6c62a88215 ("bpf: Introduce sleepable BPF programs"), BPF
> programs can sleep if the BPF_F_SLEEPABLE flag is set.
> Update the documentation accordingly.
>
> Fixes: 1e6c62a88215 ("bpf: Introduce sleepable BPF programs")
I think we don't need this Fixes tag as this patch should target to
bpf-next tree. There is no need to backport to bpf tree since it is
just a documentation change.
Based on *current* implementation, referring to sleepable BPF
program commit is not needed any more. See below for the suggested
change.
> Signed-off-by: Matteo Croce <mcroce@microsoft.com>
> ---
> include/uapi/linux/bpf.h | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/include/uapi/linux/bpf.h b/include/uapi/linux/bpf.h
> index d21326558d42..5e3b2fb62d84 100644
> --- a/include/uapi/linux/bpf.h
> +++ b/include/uapi/linux/bpf.h
> @@ -1629,9 +1629,9 @@ union bpf_attr {
> * u32 bpf_get_smp_processor_id(void)
> * Description
> * Get the SMP (symmetric multiprocessing) processor id. Note that
> - * all programs run with preemption disabled, which means that the
> - * SMP processor id is stable during all the execution of the
> - * program.
> + * programs run with preemption disabled unless BPF_F_SLEEPABLE is
> + * set, which means that the SMP processor id is stable during all
> + * the execution of the program.
Currently, migrate_disable() means true migration disable and preemption
is possible, and BPF_F_SLEEPABLE programs are also protected by
migrate_disable().
So the patch should just change "with preemption disabled" to
"with migration disabled" to reflect the new implementation.
> * Return
> * The SMP id of the processor running the program.
> *
>
prev parent reply other threads:[~2021-09-14 23:01 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-14 22:23 [PATCH bpf] bpf: update bpf_get_smp_processor_id() documentation Matteo Croce
2021-09-14 23:01 ` Yonghong Song [this message]
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=322d781e-3e69-aa5f-7b99-5c8bc768e87b@fb.com \
--to=yhs@fb.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=linux-kernel@vger.kernel.org \
--cc=mcroce@linux.microsoft.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