> Thanks for the fix! Minor comment below, no need to fix.
> 
> Acked-by: Keith Busch <keith.bu...@intel.com>

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