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) <alexis.lothore@bootlin.com>
Link: https://lore.kernel.org/bpf/20260421-uprobe_multi_usage-v1-1-4c51675955e6@bootlin.com
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
This commit is contained in:
Alexis Lothoré (eBPF Foundation) 2026-04-21 16:33:29 +02:00 committed by Kumar Kartikeya Dwivedi
parent 1980023d75
commit 7f843c0584
No known key found for this signature in database
GPG Key ID: 472D377B63542F83

View File

@ -144,6 +144,8 @@ int main(int argc, char **argv)
return trigger_uprobe(true /* page-in build ID */);
error:
fprintf(stderr, "usage: %s <bench|usdt>\n", argv[0]);
fprintf(stderr,
"usage: %s <bench|usdt|uprobe-paged-out|uprobe-paged-in>\n",
argv[0]);
return -1;
}