]> git.baikalelectronics.ru Git - kernel.git/commit
samples: pktgen: fix proc_cmd command result check logic
authorDaniel T. Lee <danieltimlee@gmail.com>
Sat, 5 Oct 2019 08:25:07 +0000 (17:25 +0900)
committerDavid S. Miller <davem@davemloft.net>
Mon, 7 Oct 2019 13:26:32 +0000 (09:26 -0400)
commite0d1d13b06f437a709516ad42b974b14ee9e588a
tree68dbe085139830a1a8fb3e7eebc2d115334707ea
parent47255dab3ba6cd0cacc38265caa393779ce1416f
samples: pktgen: fix proc_cmd command result check logic

Currently, proc_cmd is used to dispatch command to 'pg_ctrl', 'pg_thread',
'pg_set'. proc_cmd is designed to check command result with grep the
"Result:", but this might fail since this string is only shown in
'pg_thread' and 'pg_set'.

This commit fixes this logic by grep-ing the "Result:" string only when
the command is not for 'pg_ctrl'.

For clarity of an execution flow, 'errexit' flag has been set.

To cleanup pktgen on exit, trap has been added for EXIT signal.

Signed-off-by: Daniel T. Lee <danieltimlee@gmail.com>
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
samples/pktgen/functions.sh