All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH nvme-cli] switch trtype and adrfam print
@ 2016-06-07 22:07 Ming Lin
  0 siblings, 0 replies; only message in thread
From: Ming Lin @ 2016-06-07 22:07 UTC (permalink / raw)


From: Ming Lin <ming.l@samsung.com>

Signed-off-by: Ming Lin <ming.l at samsung.com>
---

Dave,

Could you help to take a look?
Just to make sure I don't make stupid mistake again.

 fabrics.c | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/fabrics.c b/fabrics.c
index d30bef2..0071147 100644
--- a/fabrics.c
+++ b/fabrics.c
@@ -274,18 +274,15 @@ static void print_discovery_log(struct nvmf_disc_rsp_page_hdr *log, int numrec)
 
 		printf("trtype:  ");
 		switch(e->trtype) {
-		case NVMF_ADDR_FAMILY_IP4:
-			printf("ipv4\n");
-			break;
-		case NVMF_ADDR_FAMILY_IP6:
-			printf("ipv6\n");
-			break;
-		case NVMF_ADDR_FAMILY_IB:
-			printf("ib\n");
+		case NVMF_TRTYPE_RDMA:
+			printf("rdma\n");
 			break;
-		case NVMF_ADDR_FAMILY_FC:
+		case NVMF_TRTYPE_FC:
 			printf("fc\n");
 			break;
+		case NVMF_TRTYPE_LOOP:
+			printf("loop\n");
+			break;
 		default:
 			printf("unknown\n");
 			break;
@@ -293,14 +290,17 @@ static void print_discovery_log(struct nvmf_disc_rsp_page_hdr *log, int numrec)
 
 		printf("adrfam:  ");
 		switch(e->adrfam) {
-		case NVMF_TRTYPE_RDMA:
-			printf("rdma\n");
+		case NVMF_ADDR_FAMILY_IP4:
+			printf("ipv4\n");
 			break;
-		case NVMF_TRTYPE_FC:
-			printf("fc\n");
+		case NVMF_ADDR_FAMILY_IP6:
+			printf("ipv6\n");
 			break;
-		case NVMF_TRTYPE_LOOP:
-			printf("loop\n");
+		case NVMF_ADDR_FAMILY_IB:
+			printf("ib\n");
+			break;
+		case NVMF_ADDR_FAMILY_FC:
+			printf("fc\n");
 			break;
 		default:
 			printf("unknown\n");
-- 
1.9.1

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2016-06-07 22:07 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-07 22:07 [PATCH nvme-cli] switch trtype and adrfam print Ming Lin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.