Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 43631357 authored by James Smart's avatar James Smart Committed by Christoph Hellwig
Browse files

nvmet_fc: Change traddr field separator to a colon



The FC-NVME spec revised syntax to avoid comma separators.
Sync with the change in the parser for traddr on port attachments.

Signed-off-by: default avatarJames Smart <james.smart@broadcom.com>
Signed-off-by: default avatarSagi Grimberg <sagi@grimberg.me>
parent 8d64daf7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2316,7 +2316,7 @@ nvmet_fc_parse_traddr(struct nvmet_fc_traddr *traddr, char *buf)
	if (!options)
		return -ENOMEM;

	while ((p = strsep(&o, ",\n")) != NULL) {
	while ((p = strsep(&o, ":\n")) != NULL) {
		if (!*p)
			continue;