Blame SOURCES/kvm-nbd-server-fix-trace.patch

357786
From 4b09857fcf27b4803336119b06033766d474ea54 Mon Sep 17 00:00:00 2001
357786
From: John Snow <jsnow@redhat.com>
357786
Date: Wed, 18 Jul 2018 22:55:00 +0200
357786
Subject: [PATCH 75/89] nbd/server: fix trace
357786
357786
RH-Author: John Snow <jsnow@redhat.com>
357786
Message-id: <20180718225511.14878-25-jsnow@redhat.com>
357786
Patchwork-id: 81401
357786
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH 24/35] nbd/server: fix trace
357786
Bugzilla: 1207657
357786
RH-Acked-by: Eric Blake <eblake@redhat.com>
357786
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
357786
RH-Acked-by: Fam Zheng <famz@redhat.com>
357786
357786
From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
357786
357786
Return code = 1 doesn't mean that we parsed base:allocation. Use
357786
correct traces in both -parsed and -skipped cases.
357786
357786
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
357786
Message-Id: <20180609151758.17343-2-vsementsov@virtuozzo.com>
357786
Reviewed-by: Eric Blake <eblake@redhat.com>
357786
[eblake: comment tweaks]
357786
Signed-off-by: Eric Blake <eblake@redhat.com>
357786
(cherry picked from commit dbb8b396bb46388cee92e9094c563297d04c43ed)
357786
Signed-off-by: John Snow <jsnow@redhat.com>
357786
357786
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
357786
---
357786
 nbd/server.c | 14 ++++++++++----
357786
 1 file changed, 10 insertions(+), 4 deletions(-)
357786
357786
diff --git a/nbd/server.c b/nbd/server.c
357786
index 493a926..942c016 100644
357786
--- a/nbd/server.c
357786
+++ b/nbd/server.c
357786
@@ -736,12 +736,16 @@ static int nbd_negotiate_send_meta_context(NBDClient *client,
357786
 
357786
 /* nbd_meta_base_query
357786
  *
357786
- * Handle query to 'base' namespace. For now, only base:allocation context is
357786
- * available in it.  'len' is the amount of text remaining to be read from
357786
+ * Handle queries to 'base' namespace. For now, only the base:allocation
357786
+ * context is available.  'len' is the amount of text remaining to be read from
357786
  * the current name, after the 'base:' portion has been stripped.
357786
  *
357786
  * Return -errno on I/O error, 0 if option was completely handled by
357786
- * sending a reply about inconsistent lengths, or 1 on success. */
357786
+ * sending a reply about inconsistent lengths, or 1 on success.
357786
+ *
357786
+ * Note: return code = 1 doesn't mean that we've parsed the "base:allocation"
357786
+ * namespace. It only means that there are no errors.
357786
+ */
357786
 static int nbd_meta_base_query(NBDClient *client, NBDExportMetaContexts *meta,
357786
                                uint32_t len, Error **errp)
357786
 {
357786
@@ -768,10 +772,12 @@ static int nbd_meta_base_query(NBDClient *client, NBDExportMetaContexts *meta,
357786
     }
357786
 
357786
     if (strncmp(query, "allocation", alen) == 0) {
357786
+        trace_nbd_negotiate_meta_query_parse("base:allocation");
357786
         meta->base_allocation = true;
357786
+    } else {
357786
+        trace_nbd_negotiate_meta_query_skip("not base:allocation");
357786
     }
357786
 
357786
-    trace_nbd_negotiate_meta_query_parse("base:allocation");
357786
     return 1;
357786
 }
357786
 
357786
-- 
357786
1.8.3.1
357786