3.16.57-rc1 review patch.  If anyone has any objections, please let me know.

------------------

From: SeongJae Park <[email protected]>

commit 8dcd6f3fe206c0bb8996e59386a04027b1c2fb9b upstream.

The '--qemu-args' option's help text is wrongly copied from '--qemu-cmd'
option and its argument type description message format is inconsistent
with other arguments.  This commit fixes the usage and type messages to
be consistent with others.

Fixes: e9ce640001c6 ("rcutorture: Add --qemu-args argument to kvm.sh")

Signed-off-by: SeongJae Park <[email protected]>
Signed-off-by: Paul E. McKenney <[email protected]>
[bwh: Backported to 3.16: adjust context]
Signed-off-by: Ben Hutchings <[email protected]>
---
 tools/testing/selftests/rcutorture/bin/kvm.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--- a/tools/testing/selftests/rcutorture/bin/kvm.sh
+++ b/tools/testing/selftests/rcutorture/bin/kvm.sh
@@ -67,7 +67,7 @@ usage () {
        echo "       --kversion vN.NN"
        echo "       --mac nn:nn:nn:nn:nn:nn"
        echo "       --no-initrd"
-       echo "       --qemu-args qemu-system-..."
+       echo "       --qemu-args qemu-arguments"
        echo "       --qemu-cmd qemu-system-..."
        echo "       --results absolute-pathname"
        echo "       --torture rcu"
@@ -142,7 +142,7 @@ do
                TORTURE_INITRD=""; export TORTURE_INITRD
                ;;
        --qemu-args)
-               checkarg --qemu-args "-qemu args" $# "$2" '^-' '^error'
+               checkarg --qemu-args "(qemu arguments)" $# "$2" '^-' '^error'
                TORTURE_QEMU_ARG="$2"
                shift
                ;;

Reply via email to