From: Alexis Lothoré (eBPF Foundation) Date: Tue, 21 Apr 2026 14:33:29 +0000 (+0200) Subject: selftests/bpf: Fix uprobe_multi usage message X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f843c0584f438c1cc8cbe798ca8ab4207e67509;p=thirdparty%2Flinux.git selftests/bpf: Fix uprobe_multi usage message uprobe_multi usage message not in sync with the list of subtests it actually supports. Add the missing subtests in the help message. Signed-off-by: Alexis Lothoré (eBPF Foundation) Link: https://lore.kernel.org/bpf/20260421-uprobe_multi_usage-v1-1-4c51675955e6@bootlin.com Signed-off-by: Kumar Kartikeya Dwivedi --- diff --git a/tools/testing/selftests/bpf/uprobe_multi.c b/tools/testing/selftests/bpf/uprobe_multi.c index 3e58a86b8e254..0af330b6c3646 100644 --- a/tools/testing/selftests/bpf/uprobe_multi.c +++ b/tools/testing/selftests/bpf/uprobe_multi.c @@ -144,6 +144,8 @@ int main(int argc, char **argv) return trigger_uprobe(true /* page-in build ID */); error: - fprintf(stderr, "usage: %s \n", argv[0]); + fprintf(stderr, + "usage: %s \n", + argv[0]); return -1; }