[PATCH bpf-next v3 4/4] bpftool: bash: Add bash completion for root_id argument
From: Daniel Xu
Date: Mon Dec 09 2024 - 18:46:29 EST
This commit updates the bash completion script with the new root_id
argument.
Signed-off-by: Daniel Xu <dxu@xxxxxxxxx>
---
tools/bpf/bpftool/bash-completion/bpftool | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/tools/bpf/bpftool/bash-completion/bpftool b/tools/bpf/bpftool/bash-completion/bpftool
index 0c541498c301..097d406ee21f 100644
--- a/tools/bpf/bpftool/bash-completion/bpftool
+++ b/tools/bpf/bpftool/bash-completion/bpftool
@@ -930,6 +930,9 @@ _bpftool()
format)
COMPREPLY=( $( compgen -W "c raw" -- "$cur" ) )
;;
+ root_id)
+ return 0;
+ ;;
c)
COMPREPLY=( $( compgen -W "unsorted" -- "$cur" ) )
;;
@@ -937,13 +940,13 @@ _bpftool()
# emit extra options
case ${words[3]} in
id|file)
- _bpftool_once_attr 'format'
+ _bpftool_once_attr 'format root_id'
;;
map|prog)
if [[ ${words[3]} == "map" ]] && [[ $cword == 6 ]]; then
COMPREPLY+=( $( compgen -W "key value kv all" -- "$cur" ) )
fi
- _bpftool_once_attr 'format'
+ _bpftool_once_attr 'format root_id'
;;
*)
;;
--
2.46.0