提交 2bcdf4e3 编写于 作者: P Paul E. McKenney

rcutorture: Eliminate --rcu-kvm argument

The --rcu-kvm argument was intended to allow the scripts to live in
an alternate location.  Unfortunately, this prevents the kvm.sh script
from using common functions until after it finished parsing arguments,
because it doesn't know where to find them until then.  However, "cp -a"
and "ln -s" work pretty well, so lack of an --rcu-kvm argument can be
easily worked around.

This commit therefore removes this argument.
Signed-off-by: NPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Greg KH <gregkh@linuxfoundation.org>
上级 14db63f5
...@@ -46,7 +46,6 @@ usage () { ...@@ -46,7 +46,6 @@ usage () {
echo " --duration minutes" echo " --duration minutes"
echo " --kversion vN.NN" echo " --kversion vN.NN"
echo " --qemu-cmd qemu-system-..." echo " --qemu-cmd qemu-system-..."
echo " --rcu-kvm absolute-pathname"
echo " --results absolute-pathname" echo " --results absolute-pathname"
echo " --relbuilddir relative-pathname" echo " --relbuilddir relative-pathname"
exit 1 exit 1
...@@ -107,19 +106,6 @@ do ...@@ -107,19 +106,6 @@ do
RCU_QEMU_CMD="$2"; export RCU_QEMU_CMD RCU_QEMU_CMD="$2"; export RCU_QEMU_CMD
shift shift
;; ;;
--rcu-kvm)
checkarg --rcu-kvm "(absolute pathname)" "$#" "$2" '^/' error
KVM=$2; export KVM
if -z "$gotbuilddir"
then
builddir=${KVM}/b1
fi
if -n "$gotrelbuilddir"
then
builddir=${KVM}/${relbuilddir}
fi
shift
;;
--relbuilddir) --relbuilddir)
checkarg --relbuilddir "(relative pathname)" "$#" "$2" '^[^/]*$' '^--' checkarg --relbuilddir "(relative pathname)" "$#" "$2" '^[^/]*$' '^--'
relbuilddir=$2 relbuilddir=$2
...@@ -133,6 +119,7 @@ do ...@@ -133,6 +119,7 @@ do
shift shift
;; ;;
*) *)
echo Unknown argument $1
usage usage
;; ;;
esac esac
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册