Displaying 2 results from an estimated 2 matches for "c7ba892".
2019 Jun 04
3
[libnbd PATCH 0/2] Better handling of failed block_status callback
Rather than moving the connection to DEAD, we can just ignore further
contexts to the existing command handle, and fail the overall command
with the same errno as the failed callback.
Eric Blake (2):
states: Track cmd->error as errno, not wire value
api: Recover from block status callback failure
generator/generator | 5 ++-
generator/states-reply-simple.c | 2 +-
2019 Jun 04
0
[libnbd PATCH 2/2] api: Recover from block status callback failure
...mmand
+will fail with the same value of C<errno> left after the
+failing callback.
The extent function is called once per type of metadata
available. The C<metacontext> parameter is a string
diff --git a/generator/states-reply-structured.c b/generator/states-reply-structured.c
index c7ba892..5791360 100644
--- a/generator/states-reply-structured.c
+++ b/generator/states-reply-structured.c
@@ -357,34 +357,37 @@
assert (h->bs_entries);
assert (length >= 12);
- /* Need to byte-swap the entries returned, but apart from that we
- * don't validate them.
- */...