mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-02 16:44:59 +00:00
selftests: devlink_lib: add check for devlink device existence
If user passes devlink handle over DEVLINK_DEV variable, check if the device exists. Signed-off-by: Jiri Pirko <jiri@nvidia.com> Link: https://lore.kernel.org/r/20210527105515.790330-1-jiri@resnulli.us Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
b14b27fffa
commit
557c4d2f78
@ -18,6 +18,12 @@ if [[ ! -v DEVLINK_DEV ]]; then
|
|||||||
|
|
||||||
DEVLINK_VIDDID=$(lspci -s $(echo $DEVLINK_DEV | cut -d"/" -f2) \
|
DEVLINK_VIDDID=$(lspci -s $(echo $DEVLINK_DEV | cut -d"/" -f2) \
|
||||||
-n | cut -d" " -f3)
|
-n | cut -d" " -f3)
|
||||||
|
else
|
||||||
|
devlink dev show $DEVLINK_DEV &> /dev/null
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo "SKIP: devlink device \"$DEVLINK_DEV\" not found"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
Loading…
Reference in New Issue
Block a user