common/rc: teach _require_xfs_io_command accept multi-parameters

The $param can't be used for all command's options, for example
"help pwrite" include:

 -Z N -- zeed the random number generator (used when writing randomly)
         (heh, zorry, the -s/-S arguments were already in use in pwrite)

We should make param="-Z N", not only "-Z". After this patch, we can
run this function as:

  _require_xfs_io_command pwrite -Z N

Signed-off-by: Zorro Lang <zlang@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Eryu Guan <eguan@redhat.com>
Signed-off-by: Eryu Guan <eguan@redhat.com>
This commit is contained in:
Zorro Lang
2016-05-19 12:30:59 +08:00
committed by Eryu Guan
parent cf00fecc4f
commit a6f6e594f7
+2 -1
View File
@@ -1874,7 +1874,8 @@ _require_xfs_io_command()
exit 1
fi
command=$1
param=$2
shift
param="$*"
testfile=$TEST_DIR/$$.xfs_io
case $command in