]> git.proxmox.com Git - mirror_qemu.git/blobdiff - docs/qmp-events.txt
qmp-events: move 'QUORUM_REPORT_BAD' doc to schema
[mirror_qemu.git] / docs / qmp-events.txt
index c0a3bb8fd4ee2ade5e24d692c7239ffc429bd956..6f42640d5f84c5a26268f8895c2fe0b2e3d73845 100644 (file)
@@ -36,39 +36,6 @@ Example:
   },
   "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
 
-QUORUM_REPORT_BAD
------------------
-
-Emitted to report a corruption of a Quorum file.
-
-Data:
-
-- "type":          Quorum operation type
-- "error":         Error message (json-string, optional)
-                   Only present on failure.  This field contains a human-readable
-                   error message.  There are no semantics other than that the
-                   block layer reported an error and clients should not try to
-                   interpret the error string.
-- "node-name":     The graph node name of the block driver state.
-- "sector-num":    Number of the first sector of the failed read operation.
-- "sectors-count": Failed read operation sector count.
-
-Example:
-
-Read operation:
-{ "event": "QUORUM_REPORT_BAD",
-     "data": { "node-name": "node0", "sector-num": 345435, "sectors-count": 5,
-               "type": "read" },
-     "timestamp": { "seconds": 1344522075, "microseconds": 745528 } }
-
-Flush operation:
-{ "event": "QUORUM_REPORT_BAD",
-     "data": { "node-name": "node0", "sector-num": 0, "sectors-count": 2097120,
-               "type": "flush", "error": "Broken pipe" },
-     "timestamp": { "seconds": 1456406829, "microseconds": 291763 } }
-
-Note: this event is rate-limited.
-
 MIGRATION_PASS
 --------------