All of lore.kernel.org
 help / color / mirror / Atom feed
From: Anton Nefedov <anton.nefedov@virtuozzo.com>
To: "qemu-devel@nongnu.org" <qemu-devel@nongnu.org>
Cc: "qemu-block@nongnu.org" <qemu-block@nongnu.org>,
	"kwolf@redhat.com" <kwolf@redhat.com>,
	"mreitz@redhat.com" <mreitz@redhat.com>,
	"armbru@redhat.com" <armbru@redhat.com>,
	"jsnow@redhat.com" <jsnow@redhat.com>,
	"pbonzini@redhat.com" <pbonzini@redhat.com>,
	"famz@redhat.com" <famz@redhat.com>,
	"eblake@redhat.com" <eblake@redhat.com>,
	Denis Lunev <den@virtuozzo.com>,
	"berto@igalia.com" <berto@igalia.com>,
	Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>,
	Anton Nefedov <anton.nefedov@virtuozzo.com>
Subject: [Qemu-devel] [PATCH v5 1/9] qapi: group BlockDeviceStats fields
Date: Wed, 31 Oct 2018 11:34:40 +0000	[thread overview]
Message-ID: <20181031113418.29796-2-anton.nefedov@virtuozzo.com> (raw)
In-Reply-To: <20181031113418.29796-1-anton.nefedov@virtuozzo.com>

Make the stat fields definition slightly more readable.
Also reorder total_time_ns stats read-write-flush as done elsewhere.
Cosmetic change only.

Signed-off-by: Anton Nefedov <anton.nefedov@virtuozzo.com>
---
 qapi/block-core.json | 26 +++++++++++++++-----------
 1 file changed, 15 insertions(+), 11 deletions(-)

diff --git a/qapi/block-core.json b/qapi/block-core.json
index 0fc1590c1b..2903b8dfc9 100644
--- a/qapi/block-core.json
+++ b/qapi/block-core.json
@@ -784,12 +784,12 @@
 # @flush_operations: The number of cache flush operations performed by the
 #                    device (since 0.15.0)
 #
-# @flush_total_time_ns: Total time spend on cache flushes in nano-seconds
-#                       (since 0.15.0).
+# @rd_total_time_ns: Total time spent on reads in nanoseconds (since 0.15.0).
 #
-# @wr_total_time_ns: Total time spend on writes in nano-seconds (since 0.15.0).
+# @wr_total_time_ns: Total time spent on writes in nanoseconds (since 0.15.0).
 #
-# @rd_total_time_ns: Total_time_spend on reads in nano-seconds (since 0.15.0).
+# @flush_total_time_ns: Total time spent on cache flushes in nanoseconds
+#                       (since 0.15.0).
 #
 # @wr_highest_offset: The offset after the greatest byte written to the
 #                     device.  The intended use of this information is for
@@ -842,14 +842,18 @@
 # Since: 0.14.0
 ##
 { 'struct': 'BlockDeviceStats',
-  'data': {'rd_bytes': 'int', 'wr_bytes': 'int', 'rd_operations': 'int',
-           'wr_operations': 'int', 'flush_operations': 'int',
-           'flush_total_time_ns': 'int', 'wr_total_time_ns': 'int',
-           'rd_total_time_ns': 'int', 'wr_highest_offset': 'int',
-           'rd_merged': 'int', 'wr_merged': 'int', '*idle_time_ns': 'int',
+  'data': {'rd_bytes': 'int', 'wr_bytes': 'int',
+           'rd_operations': 'int', 'wr_operations': 'int',
+           'flush_operations': 'int',
+           'rd_total_time_ns': 'int', 'wr_total_time_ns': 'int',
+           'flush_total_time_ns': 'int',
+           'wr_highest_offset': 'int',
+           'rd_merged': 'int', 'wr_merged': 'int',
+           '*idle_time_ns': 'int',
            'failed_rd_operations': 'int', 'failed_wr_operations': 'int',
-           'failed_flush_operations': 'int', 'invalid_rd_operations': 'int',
-           'invalid_wr_operations': 'int', 'invalid_flush_operations': 'int',
+           'failed_flush_operations': 'int',
+           'invalid_rd_operations': 'int', 'invalid_wr_operations': 'int',
+           'invalid_flush_operations': 'int',
            'account_invalid': 'bool', 'account_failed': 'bool',
            'timed_stats': ['BlockDeviceTimedStats'],
            '*x_rd_latency_histogram': 'BlockLatencyHistogramInfo',
-- 
2.17.1

  reply	other threads:[~2018-10-31 11:34 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-31 11:34 [Qemu-devel] [PATCH v5 0/9] discard blockstats Anton Nefedov
2018-10-31 11:34 ` Anton Nefedov [this message]
2018-11-12 15:40   ` [Qemu-devel] [PATCH v5 1/9] qapi: group BlockDeviceStats fields Alberto Garcia
2018-11-23 17:18   ` Vladimir Sementsov-Ogievskiy
2018-10-31 11:34 ` [Qemu-devel] [PATCH v5 2/9] qapi: add unmap to BlockDeviceStats Anton Nefedov
2018-10-31 11:34 ` [Qemu-devel] [PATCH v5 3/9] block: add empty account cookie type Anton Nefedov
2018-11-23 16:04   ` Vladimir Sementsov-Ogievskiy
2018-11-26 12:18     ` Anton Nefedov
2018-10-31 11:34 ` [Qemu-devel] [PATCH v5 4/9] ide: account UNMAP (TRIM) operations Anton Nefedov
2018-11-23 17:46   ` Vladimir Sementsov-Ogievskiy
2018-10-31 11:34 ` [Qemu-devel] [PATCH v5 5/9] scsi: store unmap offset and nb_sectors in request struct Anton Nefedov
2018-10-31 11:34 ` [Qemu-devel] [PATCH v5 6/9] scsi: move unmap error checking to the complete callback Anton Nefedov
2018-10-31 11:34 ` [Qemu-devel] [PATCH v5 7/9] scsi: account unmap operations Anton Nefedov
2018-11-23 18:25   ` Vladimir Sementsov-Ogievskiy
2018-11-26 12:20     ` Anton Nefedov
2018-10-31 11:35 ` [Qemu-devel] [PATCH v5 8/9] file-posix: account discard operations Anton Nefedov
2018-11-23 18:34   ` Vladimir Sementsov-Ogievskiy
2018-10-31 11:35 ` [Qemu-devel] [PATCH v5 9/9] qapi: query-blockstat: add driver specific file-posix stats Anton Nefedov
2018-11-23 19:21   ` Vladimir Sementsov-Ogievskiy
2018-11-26 12:55     ` Anton Nefedov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20181031113418.29796-2-anton.nefedov@virtuozzo.com \
    --to=anton.nefedov@virtuozzo.com \
    --cc=armbru@redhat.com \
    --cc=berto@igalia.com \
    --cc=den@virtuozzo.com \
    --cc=eblake@redhat.com \
    --cc=famz@redhat.com \
    --cc=jsnow@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=mreitz@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=vsementsov@virtuozzo.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.