From 1afb7d58356932f93ae3c4f18258428e0cb67bf6 Mon Sep 17 00:00:00 2001 From: Daniel Hodges Date: Fri, 15 Nov 2024 08:53:30 -0800 Subject: [PATCH] scx_layered: Fix formatting Signed-off-by: Daniel Hodges --- scheds/rust/scx_layered/src/bpf/main.bpf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scheds/rust/scx_layered/src/bpf/main.bpf.c b/scheds/rust/scx_layered/src/bpf/main.bpf.c index 4c89c6b..320f9d0 100644 --- a/scheds/rust/scx_layered/src/bpf/main.bpf.c +++ b/scheds/rust/scx_layered/src/bpf/main.bpf.c @@ -2631,7 +2631,8 @@ s32 BPF_STRUCT_OPS_SLEEPABLE(layered_init) bpf_for(i, 0, nr_possible_cpus) { const volatile u8 *u8_ptr; - init_antistall_dsq = bpf_map_lookup_percpu_elem(&antistall_cpu_dsq, &zero, i); + init_antistall_dsq = bpf_map_lookup_percpu_elem(&antistall_cpu_dsq, + &zero, i); if (init_antistall_dsq) { *init_antistall_dsq = SCX_DSQ_INVALID; }