]> www.infradead.org Git - users/sagi/blktests.git/commitdiff
nvme/rc: connect subsys only support long options
authorDaniel Wagner <dwagner@suse.de>
Tue, 26 Mar 2024 13:13:50 +0000 (14:13 +0100)
committerShin'ichiro Kawasaki <shinichiro.kawasaki@wdc.com>
Fri, 29 Mar 2024 05:36:25 +0000 (14:36 +0900)
There is no user for the short command line options, thus
remove the short options to reduce the parsing overhead.

Signed-off-by: Daniel Wagner <dwagner@suse.de>
Signed-off-by: Shin'ichiro Kawasaki <shinichiro.kawasaki@wdc.com>
tests/nvme/rc

index 6bf2e3ae37c5305502e6a88b8ed54c2e6294269c..535bd869bf5829f71019457d80b3b125e2d3024d 100644 (file)
@@ -428,55 +428,55 @@ _nvme_connect_subsys() {
 
        while [[ $# -gt 0 ]]; do
                case $1 in
-                       -a|--traddr)
+                       --traddr)
                                traddr="$2"
                                shift 2
                                ;;
-                       -w|--host-traddr)
+                       --host-traddr)
                                host_traddr="$2"
                                shift 2
                                ;;
-                       -s|--trsvcid)
+                       --trsvcid)
                                trsvcid="$2"
                                shift 2
                                ;;
-                       -n|--hostnqn)
+                       --hostnqn)
                                hostnqn="$2"
                                shift 2
                                ;;
-                       -I|--hostid)
+                       --hostid)
                                hostid="$2"
                                shift 2
                                ;;
-                       -S|--dhchap-secret)
+                       --dhchap-secret)
                                hostkey="$2"
                                shift 2
                                ;;
-                       -C|--dhchap-ctrl-secret)
+                       --dhchap-ctrl-secret)
                                ctrlkey="$2"
                                shift 2
                                ;;
-                       -i|--nr-io-queues)
+                       --nr-io-queues)
                                nr_io_queues="$2"
                                shift 2
                                ;;
-                       -W|--nr-write-queues)
+                       --nr-write-queues)
                                nr_write_queues="$2"
                                shift 2
                                ;;
-                       -P|--nr-poll-queues)
+                       --nr-poll-queues)
                                nr_poll_queues="$2"
                                shift 2
                                ;;
-                       -k|--keep-alive-tmo)
+                       --keep-alive-tmo)
                                keep_alive_tmo="$2"
                                shift 2
                                ;;
-                       -c|--reconnect-delay)
+                       --reconnect-delay)
                                reconnect_delay="$2"
                                shift 2
                                ;;
-                       -l|--ctrl-loss-tmo)
+                       --ctrl-loss-tmo)
                                ctrl_loss_tmo="$2"
                                shift 2
                                ;;