summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel P. Berrange <berrange@redhat.com>2016-02-17 10:10:21 +0000
committerTimothy Pearson <tpearson@raptorengineering.com>2019-11-29 19:45:30 -0600
commit0725b1365a68c6548dae7589aa02ef3de734e60a (patch)
tree199cdbd1068ddc316f3df873efc66a22c24d2c81
parent2aa53c44750a2715db9e44840944d9be3e5dfe94 (diff)
downloadhqemu-0725b1365a68c6548dae7589aa02ef3de734e60a.zip
hqemu-0725b1365a68c6548dae7589aa02ef3de734e60a.tar.gz
qemu-nbd: don't overlap long option values with short options
When defining values for long options, the normal practice is to start numbering from 256, to avoid overlap with the range of valid values for short options. Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Daniel P. Berrange <berrange@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rw-r--r--qemu-nbd.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/qemu-nbd.c b/qemu-nbd.c
index 424e71f..9ccfc13 100644
--- a/qemu-nbd.c
+++ b/qemu-nbd.c
@@ -37,13 +37,13 @@
#include <pthread.h>
#define SOCKET_PATH "/var/lock/qemu-nbd-%s"
-#define QEMU_NBD_OPT_CACHE 1
-#define QEMU_NBD_OPT_AIO 2
-#define QEMU_NBD_OPT_DISCARD 3
-#define QEMU_NBD_OPT_DETECT_ZEROES 4
-#define QEMU_NBD_OPT_OBJECT 5
-#define QEMU_NBD_OPT_TLSCREDS 6
-#define QEMU_NBD_OPT_IMAGE_OPTS 7
+#define QEMU_NBD_OPT_CACHE 256
+#define QEMU_NBD_OPT_AIO 257
+#define QEMU_NBD_OPT_DISCARD 258
+#define QEMU_NBD_OPT_DETECT_ZEROES 259
+#define QEMU_NBD_OPT_OBJECT 260
+#define QEMU_NBD_OPT_TLSCREDS 261
+#define QEMU_NBD_OPT_IMAGE_OPTS 262
static NBDExport *exp;
static bool newproto;
OpenPOWER on IntegriCloud