[PATCH 08/10] fabrics: use "const char *" in struct config
mwilck at suse.com
mwilck at suse.com
Sat Mar 6 00:36:22 GMT 2021
From: Martin Wilck <mwilck at suse.com>
This is easily done, and allows passing in some const char* pointers
that would otherwise need to be strdup()d first.
Do not use const char * for cfg->device, because we may need to free()
it.
Signed-off-by: Martin Wilck <mwilck at suse.com>
---
fabrics.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/fabrics.c b/fabrics.c
index 8a1586f..c965beb 100644
--- a/fabrics.c
+++ b/fabrics.c
@@ -67,13 +67,13 @@ const char *conarg_trsvcid = "trsvcid";
const char *conarg_host_traddr = "host_traddr";
static struct config {
- char *nqn;
- char *transport;
- char *traddr;
- char *trsvcid;
- char *host_traddr;
- char *hostnqn;
- char *hostid;
+ const char *nqn;
+ const char *transport;
+ const char *traddr;
+ const char *trsvcid;
+ const char *host_traddr;
+ const char *hostnqn;
+ const char *hostid;
int nr_io_queues;
int nr_write_queues;
int nr_poll_queues;
@@ -82,7 +82,7 @@ static struct config {
int reconnect_delay;
int ctrl_loss_tmo;
int tos;
- char *raw;
+ const char *raw;
char *device;
int duplicate_connect;
int disable_sqflow;
@@ -90,7 +90,7 @@ static struct config {
int data_digest;
bool persistent;
bool matching_only;
- char *output_format;
+ const char *output_format;
} cfg = {
.ctrl_loss_tmo = NVMF_DEF_CTRL_LOSS_TMO,
.output_format = "normal",
--
2.29.2
More information about the Linux-nvme
mailing list