* [PATCH v2] samples/bpf: Fix tc and ip paths in xdp2skb_meta.sh
@ 2018-07-09 17:51 Taeung Song
2018-07-09 19:16 ` Jesper Dangaard Brouer
2018-07-10 7:20 ` Daniel Borkmann
0 siblings, 2 replies; 3+ messages in thread
From: Taeung Song @ 2018-07-09 17:51 UTC (permalink / raw)
To: Alexei Starovoitov, Daniel Borkmann
Cc: Jesper Dangaard Brouer, netdev, linux-kernel, Taeung Song
The below path error can occur:
# ./xdp2skb_meta.sh --dev eth0 --list
./xdp2skb_meta.sh: line 61: /usr/sbin/tc: No such file or directory
So just use command names instead of absolute paths of tc and ip.
In addition, it allow callers to redefine $TC and $IP paths
Fixes: 36e04a2d78d9 ("samples/bpf: xdp2skb_meta shows transferring info from XDP to SKB")
Reviewed-by: Jesper Dangaard Brouer <brouer@redhat.com>
Signed-off-by: Taeung Song <treeze.taeung@gmail.com>
---
samples/bpf/xdp2skb_meta.sh | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/samples/bpf/xdp2skb_meta.sh b/samples/bpf/xdp2skb_meta.sh
index b9c9549c4c27..4bde9d066c46 100755
--- a/samples/bpf/xdp2skb_meta.sh
+++ b/samples/bpf/xdp2skb_meta.sh
@@ -16,8 +16,8 @@
BPF_FILE=xdp2skb_meta_kern.o
DIR=$(dirname $0)
-export TC=/usr/sbin/tc
-export IP=/usr/sbin/ip
+[ -z "$TC" ] && TC=tc
+[ -z "$IP" ] && IP=ip
function usage() {
echo ""
@@ -53,7 +53,7 @@ function _call_cmd() {
local allow_fail="$2"
shift 2
if [[ -n "$VERBOSE" ]]; then
- echo "$(basename $cmd) $@"
+ echo "$cmd $@"
fi
if [[ -n "$DRYRUN" ]]; then
return
--
2.17.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2] samples/bpf: Fix tc and ip paths in xdp2skb_meta.sh
2018-07-09 17:51 [PATCH v2] samples/bpf: Fix tc and ip paths in xdp2skb_meta.sh Taeung Song
@ 2018-07-09 19:16 ` Jesper Dangaard Brouer
2018-07-10 7:20 ` Daniel Borkmann
1 sibling, 0 replies; 3+ messages in thread
From: Jesper Dangaard Brouer @ 2018-07-09 19:16 UTC (permalink / raw)
To: Taeung Song
Cc: Alexei Starovoitov, Daniel Borkmann, netdev, linux-kernel, brouer
On Tue, 10 Jul 2018 02:51:21 +0900
Taeung Song <treeze.taeung@gmail.com> wrote:
> The below path error can occur:
>
> # ./xdp2skb_meta.sh --dev eth0 --list
> ./xdp2skb_meta.sh: line 61: /usr/sbin/tc: No such file or directory
>
> So just use command names instead of absolute paths of tc and ip.
> In addition, it allow callers to redefine $TC and $IP paths
>
> Fixes: 36e04a2d78d9 ("samples/bpf: xdp2skb_meta shows transferring info from XDP to SKB")
> Reviewed-by: Jesper Dangaard Brouer <brouer@redhat.com>
> Signed-off-by: Taeung Song <treeze.taeung@gmail.com>
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
--
Best regards,
Jesper Dangaard Brouer
MSc.CS, Principal Kernel Engineer at Red Hat
LinkedIn: http://www.linkedin.com/in/brouer
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] samples/bpf: Fix tc and ip paths in xdp2skb_meta.sh
2018-07-09 17:51 [PATCH v2] samples/bpf: Fix tc and ip paths in xdp2skb_meta.sh Taeung Song
2018-07-09 19:16 ` Jesper Dangaard Brouer
@ 2018-07-10 7:20 ` Daniel Borkmann
1 sibling, 0 replies; 3+ messages in thread
From: Daniel Borkmann @ 2018-07-10 7:20 UTC (permalink / raw)
To: Taeung Song, Alexei Starovoitov
Cc: Jesper Dangaard Brouer, netdev, linux-kernel
On 07/09/2018 07:51 PM, Taeung Song wrote:
> The below path error can occur:
>
> # ./xdp2skb_meta.sh --dev eth0 --list
> ./xdp2skb_meta.sh: line 61: /usr/sbin/tc: No such file or directory
>
> So just use command names instead of absolute paths of tc and ip.
> In addition, it allow callers to redefine $TC and $IP paths
>
> Fixes: 36e04a2d78d9 ("samples/bpf: xdp2skb_meta shows transferring info from XDP to SKB")
> Reviewed-by: Jesper Dangaard Brouer <brouer@redhat.com>
> Signed-off-by: Taeung Song <treeze.taeung@gmail.com>
Applied to bpf, thanks Taeung!
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-07-10 7:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-09 17:51 [PATCH v2] samples/bpf: Fix tc and ip paths in xdp2skb_meta.sh Taeung Song
2018-07-09 19:16 ` Jesper Dangaard Brouer
2018-07-10 7:20 ` Daniel Borkmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).