Commit a87ba5a7 authored by Ben Walker's avatar Ben Walker Committed by Jim Harris
Browse files

test/vhost: Rename spdk_vhost_list_all to vhost_list_all



No need to prefix name with spdk.

Change-Id: I413f78fac427a0955db495bb926bf8d6bc3dfb2a
Signed-off-by: default avatarBen Walker <benjamin.walker@intel.com>
Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/456701


Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: default avatarDarek Stojaczyk <dariusz.stojaczyk@intel.com>
Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
parent 9132128f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ function get_vhost_dir()
	echo "$TEST_DIR/vhost${vhost_num}"
}

function spdk_vhost_list_all()
function vhost_list_all()
{
	shopt -s nullglob
	local vhost_list="$(echo $TEST_DIR/vhost[0-9]*)"
@@ -1117,7 +1117,7 @@ function at_app_exit()
	# Kill vhost application
	notice "killing vhost app"

	for vhost_num in $(spdk_vhost_list_all); do
	for vhost_num in $(vhost_list_all); do
		spdk_vhost_kill $vhost_num
	done