qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH v2 12/16] qapi-schema: Move block events from ev


From: Marc-André Lureau
Subject: Re: [Qemu-devel] [PATCH v2 12/16] qapi-schema: Move block events from event.json to block.json
Date: Fri, 25 Aug 2017 11:20:44 +0000

On Thu, Aug 24, 2017 at 9:25 PM Markus Armbruster <address@hidden> wrote:

> Cc: Alberto Garcia <address@hidden>
> Signed-off-by: Markus Armbruster <address@hidden>
>

Reviewed-by: Marc-André Lureau <address@hidden>



> ---
>  qapi/block.json | 68
> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  qapi/event.json | 68
> ---------------------------------------------------------
>  2 files changed, 68 insertions(+), 68 deletions(-)
>
> diff --git a/qapi/block.json b/qapi/block.json
> index 414b61b..8ce3357 100644
> --- a/qapi/block.json
> +++ b/qapi/block.json
> @@ -277,3 +277,71 @@
>  ##
>  { 'enum': 'QuorumOpType',
>    'data': [ 'read', 'write', 'flush' ] }
> +
> +##
> +# @QUORUM_FAILURE:
> +#
> +# Emitted by the Quorum block driver if it fails to establish a quorum
> +#
> +# @reference: device name if defined else node name
> +#
> +# @sector-num: number of the first sector of the failed read operation
> +#
> +# @sectors-count: failed read operation sector count
> +#
> +# Note: This event is rate-limited.
> +#
> +# Since: 2.0
> +#
> +# Example:
> +#
> +# <- { "event": "QUORUM_FAILURE",
> +#      "data": { "reference": "usr1", "sector-num": 345435,
> "sectors-count": 5 },
> +#      "timestamp": { "seconds": 1344522075, "microseconds": 745528 } }
> +#
> +##
> +{ 'event': 'QUORUM_FAILURE',
> +  'data': { 'reference': 'str', 'sector-num': 'int', 'sectors-count':
> 'int' } }
> +
> +##
> +# @QUORUM_REPORT_BAD:
> +#
> +# Emitted to report a corruption of a Quorum file
> +#
> +# @type: quorum operation type (Since 2.6)
> +#
> +# @error: error message. 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
> +#
> +# Note: This event is rate-limited.
> +#
> +# Since: 2.0
> +#
> +# Example:
> +#
> +# 1. Read operation
> +#
> +# { "event": "QUORUM_REPORT_BAD",
> +#      "data": { "node-name": "node0", "sector-num": 345435,
> "sectors-count": 5,
> +#                "type": "read" },
> +#      "timestamp": { "seconds": 1344522075, "microseconds": 745528 } }
> +#
> +# 2. 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 } }
> +#
> +##
> +{ 'event': 'QUORUM_REPORT_BAD',
> +  'data': { 'type': 'QuorumOpType', '*error': 'str', 'node-name': 'str',
> +            'sector-num': 'int', 'sectors-count': 'int' } }
> diff --git a/qapi/event.json b/qapi/event.json
> index a043de4..48a5d8f 100644
> --- a/qapi/event.json
> +++ b/qapi/event.json
> @@ -92,74 +92,6 @@
>    'data': { 'actual': 'int' } }
>
>  ##
> -# @QUORUM_FAILURE:
> -#
> -# Emitted by the Quorum block driver if it fails to establish a quorum
> -#
> -# @reference: device name if defined else node name
> -#
> -# @sector-num: number of the first sector of the failed read operation
> -#
> -# @sectors-count: failed read operation sector count
> -#
> -# Note: This event is rate-limited.
> -#
> -# Since: 2.0
> -#
> -# Example:
> -#
> -# <- { "event": "QUORUM_FAILURE",
> -#      "data": { "reference": "usr1", "sector-num": 345435,
> "sectors-count": 5 },
> -#      "timestamp": { "seconds": 1344522075, "microseconds": 745528 } }
> -#
> -##
> -{ 'event': 'QUORUM_FAILURE',
> -  'data': { 'reference': 'str', 'sector-num': 'int', 'sectors-count':
> 'int' } }
> -
> -##
> -# @QUORUM_REPORT_BAD:
> -#
> -# Emitted to report a corruption of a Quorum file
> -#
> -# @type: quorum operation type (Since 2.6)
> -#
> -# @error: error message. 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
> -#
> -# Note: This event is rate-limited.
> -#
> -# Since: 2.0
> -#
> -# Example:
> -#
> -# 1. Read operation
> -#
> -# { "event": "QUORUM_REPORT_BAD",
> -#      "data": { "node-name": "node0", "sector-num": 345435,
> "sectors-count": 5,
> -#                "type": "read" },
> -#      "timestamp": { "seconds": 1344522075, "microseconds": 745528 } }
> -#
> -# 2. 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 } }
> -#
> -##
> -{ 'event': 'QUORUM_REPORT_BAD',
> -  'data': { 'type': 'QuorumOpType', '*error': 'str', 'node-name': 'str',
> -            'sector-num': 'int', 'sectors-count': 'int' } }
> -
> -##
>  # @MEM_UNPLUG_ERROR:
>  #
>  # Emitted when memory hot unplug error occurs.
> --
> 2.7.5
>
>
> --
Marc-André Lureau


reply via email to

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