qemu-block
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-block] [PATCH] nvme: fix identify to be NVMe 1.1 compliant


From: Busch, Keith
Subject: Re: [Qemu-block] [PATCH] nvme: fix identify to be NVMe 1.1 compliant
Date: Tue, 17 Nov 2015 17:33:11 +0000

> Thanks for the fix! Minor comment below, no need to fix.
> 
> Acked-by: Keith Busch <address@hidden>

I accidently deleted my comment. Here's what it said:

+    list = g_malloc(data_len);
+    for (i = 0; i < n->num_namespaces; i++) {
+        if (i <= min_nsid) {
+            continue;
+        }
+        list[i] = i;

This should be:

+        list[i] = cpu_to_le32(i);



reply via email to

[Prev in Thread] Current Thread [Next in Thread]