From: Jakub Kicinski <jakub.kicinski@netronome.com>
To: alexei.starovoitov@gmail.com, daniel@iogearbox.net
Cc: netdev@vger.kernel.org, oss-drivers@netronome.com,
Quentin Monnet <quentin.monnet@netronome.com>
Subject: [PATCH bpf-next 8/8] tools: bpftool: add bash completion for CFG dump
Date: Mon, 26 Feb 2018 20:12:54 -0800 [thread overview]
Message-ID: <20180227041254.32442-9-jakub.kicinski@netronome.com> (raw)
In-Reply-To: <20180227041254.32442-1-jakub.kicinski@netronome.com>
From: Quentin Monnet <quentin.monnet@netronome.com>
Add bash completion for the "visual" keyword used for dumping the CFG of
eBPF programs with bpftool. Make sure we only complete with this keyword
when we dump "xlated" (and not "jited") instructions.
Acked-by: Jiong Wang <jiong.wang@netronome.com>
Signed-off-by: Quentin Monnet <quentin.monnet@netronome.com>
Acked-by: Jakub Kicinski <jakub.kicinski@netronome.com>
---
tools/bpf/bpftool/bash-completion/bpftool | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/tools/bpf/bpftool/bash-completion/bpftool b/tools/bpf/bpftool/bash-completion/bpftool
index 08719c54a614..490811b45fa7 100644
--- a/tools/bpf/bpftool/bash-completion/bpftool
+++ b/tools/bpf/bpftool/bash-completion/bpftool
@@ -147,7 +147,7 @@ _bpftool()
# Deal with simplest keywords
case $prev in
- help|key|opcodes)
+ help|key|opcodes|visual)
return 0
;;
tag)
@@ -223,11 +223,16 @@ _bpftool()
return 0
;;
*)
- _bpftool_once_attr 'file'
+ _bpftool_once_attr 'file'
+ if _bpftool_search_list 'xlated'; then
+ COMPREPLY+=( $( compgen -W 'opcodes visual' -- \
+ "$cur" ) )
+ else
COMPREPLY+=( $( compgen -W 'opcodes' -- \
"$cur" ) )
- return 0
- ;;
+ fi
+ return 0
+ ;;
esac
;;
pin)
--
2.15.1
prev parent reply other threads:[~2018-02-27 4:14 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-27 4:12 [PATCH bpf-next 0/8] tools: bpftool: visualization support for eBPF program Jakub Kicinski
2018-02-27 4:12 ` [PATCH bpf-next 1/8] tools: bpftool: remove unnecessary 'if' to reduce indentation Jakub Kicinski
2018-02-27 4:12 ` [PATCH bpf-next 2/8] tools: bpftool: factor out xlated dump related code into separate file Jakub Kicinski
2018-02-27 4:12 ` [PATCH bpf-next 3/8] tools: bpftool: detect sub-programs from the eBPF sequence Jakub Kicinski
2018-02-27 4:25 ` Alexei Starovoitov
2018-02-27 4:12 ` [PATCH bpf-next 4/8] tools: bpftool: partition basic-block for each function in the CFG Jakub Kicinski
2018-02-27 4:12 ` [PATCH bpf-next 5/8] tools: bpftool: add out edges for each basic-block Jakub Kicinski
2018-02-27 4:12 ` [PATCH bpf-next 6/8] tools: bpftool: generate .dot graph from CFG information Jakub Kicinski
2018-02-27 4:12 ` [PATCH bpf-next 7/8] tools: bpftool: new command-line option and documentation for 'visual' Jakub Kicinski
2018-02-27 4:12 ` Jakub Kicinski [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180227041254.32442-9-jakub.kicinski@netronome.com \
--to=jakub.kicinski@netronome.com \
--cc=alexei.starovoitov@gmail.com \
--cc=daniel@iogearbox.net \
--cc=netdev@vger.kernel.org \
--cc=oss-drivers@netronome.com \
--cc=quentin.monnet@netronome.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox