Skip to content

Commit a560285

Browse files
committed
ofpathname: skip devices with no devspec when coorelating FC OF paths
When using ofpathname to find the logical device associated to a Fibre Channel or Virtual Fibre Channel OF path an ERR_NO_SYSFS_DEVINFO error can be returned if a device with no devspec attribute is in the list of devices to cross reference. If a device with no devspec is found simply skip it an continue the for-loop device search. Signed-off-by: Tyrel Datwyler <[email protected]>
1 parent a67eb56 commit a560285

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

scripts/ofpathname

+12-4
Original file line numberDiff line numberDiff line change
@@ -1649,10 +1649,14 @@ of2l_vfc()
16491649
link=$PWD
16501650

16511651
local device_dir=${PWD##/*/}
1652-
goto_dir $PWD "devspec"
1652+
goto_dir $PWD "devspec" 0
1653+
if [[ $? -eq 1 ]]; then
1654+
continue;
1655+
fi
16531656
OF_PATH=`$CAT $PWD/devspec`
1657+
16541658
if [[ -z $OF_PATH ]]; then
1655-
err $ERR_NO_LOGDEV
1659+
err $ERR_NO_LOGDEV
16561660
fi
16571661

16581662
# Skip if this is not the correct FC port
@@ -1727,10 +1731,14 @@ of2l_fc()
17271731

17281732
cd $link
17291733
local device_dir=${PWD##/*/}
1730-
goto_dir $PWD "devspec"
1734+
goto_dir $PWD "devspec" 0
1735+
if [[ $? -eq 1 ]]; then
1736+
continue;
1737+
fi
17311738
OF_PATH=`$CAT devspec`
1739+
17321740
if [[ -z $OF_PATH ]]; then
1733-
err $ERR_NO_LOGDEV
1741+
err $ERR_NO_LOGDEV;
17341742
fi
17351743

17361744
# Skip if this is not the correct FC port

0 commit comments

Comments
 (0)