]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
bpf: Add ability to pin bpf timer to calling CPU
authorDavid Vernet <void@manifault.com>
Wed, 4 Oct 2023 16:23:38 +0000 (11:23 -0500)
committerDaniel Borkmann <daniel@iogearbox.net>
Mon, 9 Oct 2023 14:28:49 +0000 (16:28 +0200)
BPF supports creating high resolution timers using bpf_timer_* helper
functions. Currently, only the BPF_F_TIMER_ABS flag is supported, which
specifies that the timeout should be interpreted as absolute time. It
would also be useful to be able to pin that timer to a core. For
example, if you wanted to make a subset of cores run without timer
interrupts, and only have the timer be invoked on a single core.

This patch adds support for this with a new BPF_F_TIMER_CPU_PIN flag.
When specified, the HRTIMER_MODE_PINNED flag is passed to
hrtimer_start(). A subsequent patch will update selftests to validate.

Signed-off-by: David Vernet <void@manifault.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Song Liu <song@kernel.org>
Acked-by: Hou Tao <houtao1@huawei.com>
Link: https://lore.kernel.org/bpf/20231004162339.200702-2-void@manifault.com
include/uapi/linux/bpf.h
kernel/bpf/helpers.c
tools/include/uapi/linux/bpf.h

index 70bfa997e8963b5d4fc583144651b660a3d8ffc9..a7d4a1a69f21751fb5ae05774ca942a3cfdbff05 100644 (file)
@@ -5096,6 +5096,8 @@ union bpf_attr {
  *             **BPF_F_TIMER_ABS**
  *                     Start the timer in absolute expire value instead of the
  *                     default relative one.
+ *             **BPF_F_TIMER_CPU_PIN**
+ *                     Timer will be pinned to the CPU of the caller.
  *
  *     Return
  *             0 on success.
@@ -7309,9 +7311,11 @@ struct bpf_core_relo {
  * Flags to control bpf_timer_start() behaviour.
  *     - BPF_F_TIMER_ABS: Timeout passed is absolute time, by default it is
  *       relative to current time.
+ *     - BPF_F_TIMER_CPU_PIN: Timer will be pinned to the CPU of the caller.
  */
 enum {
        BPF_F_TIMER_ABS = (1ULL << 0),
+       BPF_F_TIMER_CPU_PIN = (1ULL << 1),
 };
 
 /* BPF numbers iterator state */
index dd1c69ee3375f17ca5276bbb59ad0aea79074cdc..d2840dd5b00d71660593ccd9a0df068f1f4d127f 100644 (file)
@@ -1272,7 +1272,7 @@ BPF_CALL_3(bpf_timer_start, struct bpf_timer_kern *, timer, u64, nsecs, u64, fla
 
        if (in_nmi())
                return -EOPNOTSUPP;
-       if (flags > BPF_F_TIMER_ABS)
+       if (flags & ~(BPF_F_TIMER_ABS | BPF_F_TIMER_CPU_PIN))
                return -EINVAL;
        __bpf_spin_lock_irqsave(&timer->lock);
        t = timer->timer;
@@ -1286,6 +1286,9 @@ BPF_CALL_3(bpf_timer_start, struct bpf_timer_kern *, timer, u64, nsecs, u64, fla
        else
                mode = HRTIMER_MODE_REL_SOFT;
 
+       if (flags & BPF_F_TIMER_CPU_PIN)
+               mode |= HRTIMER_MODE_PINNED;
+
        hrtimer_start(&t->timer, ns_to_ktime(nsecs), mode);
 out:
        __bpf_spin_unlock_irqrestore(&timer->lock);
index 70bfa997e8963b5d4fc583144651b660a3d8ffc9..a7d4a1a69f21751fb5ae05774ca942a3cfdbff05 100644 (file)
@@ -5096,6 +5096,8 @@ union bpf_attr {
  *             **BPF_F_TIMER_ABS**
  *                     Start the timer in absolute expire value instead of the
  *                     default relative one.
+ *             **BPF_F_TIMER_CPU_PIN**
+ *                     Timer will be pinned to the CPU of the caller.
  *
  *     Return
  *             0 on success.
@@ -7309,9 +7311,11 @@ struct bpf_core_relo {
  * Flags to control bpf_timer_start() behaviour.
  *     - BPF_F_TIMER_ABS: Timeout passed is absolute time, by default it is
  *       relative to current time.
+ *     - BPF_F_TIMER_CPU_PIN: Timer will be pinned to the CPU of the caller.
  */
 enum {
        BPF_F_TIMER_ABS = (1ULL << 0),
+       BPF_F_TIMER_CPU_PIN = (1ULL << 1),
 };
 
 /* BPF numbers iterator state */