aboutsummaryrefslogtreecommitdiffstats
path: root/samples
diff options
context:
space:
mode:
authorTaeung Song <treeze.taeung@gmail.com>2018-07-09 13:51:21 -0400
committerDaniel Borkmann <daniel@iogearbox.net>2018-07-10 03:19:01 -0400
commitb9626f45abccd044f8048269c67720f0719f2d4e (patch)
tree50d60d8d9dd694390aaf33fb8347f5fa24b8af79 /samples
parentf292b87d3ac020418644d8a4bbf29814890505cb (diff)
samples/bpf: Fix tc and ip paths in xdp2skb_meta.sh
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> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Diffstat (limited to 'samples')
-rwxr-xr-xsamples/bpf/xdp2skb_meta.sh6
1 files 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 @@
16BPF_FILE=xdp2skb_meta_kern.o 16BPF_FILE=xdp2skb_meta_kern.o
17DIR=$(dirname $0) 17DIR=$(dirname $0)
18 18
19export TC=/usr/sbin/tc 19[ -z "$TC" ] && TC=tc
20export IP=/usr/sbin/ip 20[ -z "$IP" ] && IP=ip
21 21
22function usage() { 22function usage() {
23 echo "" 23 echo ""
@@ -53,7 +53,7 @@ function _call_cmd() {
53 local allow_fail="$2" 53 local allow_fail="$2"
54 shift 2 54 shift 2
55 if [[ -n "$VERBOSE" ]]; then 55 if [[ -n "$VERBOSE" ]]; then
56 echo "$(basename $cmd) $@" 56 echo "$cmd $@"
57 fi 57 fi
58 if [[ -n "$DRYRUN" ]]; then 58 if [[ -n "$DRYRUN" ]]; then
59 return 59 return