diff mbox

[ndctl] ndctl, rescan-partitions.sh: fix skipping for missing modules

Message ID 20180405043744.23069-1-vishal.l.verma@intel.com (mailing list archive)
State New, archived
Headers show

Commit Message

Verma, Vishal L April 5, 2018, 4:37 a.m. UTC
rescan-partitions would fail if the nfit_test module was not found. Fix
by moving the modprobe attempt to earlier in the test.

Cc: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
---
 test/rescan-partitions.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/test/rescan-partitions.sh b/test/rescan-partitions.sh
index 47f0b62..7ae0957 100755
--- a/test/rescan-partitions.sh
+++ b/test/rescan-partitions.sh
@@ -54,7 +54,6 @@  check_prereq "blockdev"
 
 reset()
 {
-	modprobe nfit_test
 	$ndctl disable-region -b "$bus" all
 	$ndctl zero-labels -b "$bus" all
 	$ndctl enable-region -b "$bus" all
@@ -97,6 +96,7 @@  test_mode()
 	$ndctl destroy-namespace $dev
 }
 
+modprobe nfit_test
 rc=1
 reset
 test_mode "raw"