From: Anton Nefedov <anton.nefedov@virtuozzo.com>
To: qemu-devel@nongnu.org
Cc: qemu-block@nongnu.org, kwolf@redhat.com, mreitz@redhat.com,
armbru@redhat.com, jsnow@redhat.com, pbonzini@redhat.com,
eblake@redhat.com, berto@igalia.com, den@virtuozzo.com,
Anton Nefedov <anton.nefedov@virtuozzo.com>
Subject: [Qemu-devel] [PATCH v3 3/8] ide: account UNMAP (TRIM) operations
Date: Wed, 13 Jun 2018 20:44:21 +0300 [thread overview]
Message-ID: <1528911866-37489-4-git-send-email-anton.nefedov@virtuozzo.com> (raw)
In-Reply-To: <1528911866-37489-1-git-send-email-anton.nefedov@virtuozzo.com>
Signed-off-by: Anton Nefedov <anton.nefedov@virtuozzo.com>
---
hw/ide/core.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/hw/ide/core.c b/hw/ide/core.c
index 2c62efc..352429b 100644
--- a/hw/ide/core.c
+++ b/hw/ide/core.c
@@ -440,6 +440,14 @@ static void ide_issue_trim_cb(void *opaque, int ret)
TrimAIOCB *iocb = opaque;
IDEState *s = iocb->s;
+ if (iocb->i >= 0) {
+ if (ret >= 0) {
+ block_acct_done(blk_get_stats(s->blk), &s->acct);
+ } else {
+ block_acct_failed(blk_get_stats(s->blk), &s->acct);
+ }
+ }
+
if (ret >= 0) {
while (iocb->j < iocb->qiov->niov) {
int j = iocb->j;
@@ -461,6 +469,9 @@ static void ide_issue_trim_cb(void *opaque, int ret)
goto done;
}
+ block_acct_start(blk_get_stats(s->blk), &s->acct,
+ count << BDRV_SECTOR_BITS, BLOCK_ACCT_UNMAP);
+
/* Got an entry! Submit and exit. */
iocb->aiocb = blk_aio_pdiscard(s->blk,
sector << BDRV_SECTOR_BITS,
@@ -845,6 +856,7 @@ static void ide_dma_cb(void *opaque, int ret)
}
if (ret == -EINVAL) {
+ block_acct_invalid(blk_get_stats(s->blk), BLOCK_ACCT_UNMAP);
ide_dma_error(s);
return;
}
--
2.7.4
next prev parent reply other threads:[~2018-06-13 17:44 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-13 17:44 [Qemu-devel] [PATCH v3 0/8] discard blockstats Anton Nefedov
2018-06-13 17:44 ` [Qemu-devel] [PATCH v3 1/8] qapi: group BlockDeviceStats fields Anton Nefedov
2018-06-15 12:58 ` Alberto Garcia
2018-06-13 17:44 ` [Qemu-devel] [PATCH v3 2/8] qapi: add unmap to BlockDeviceStats Anton Nefedov
2018-06-13 17:44 ` Anton Nefedov [this message]
2018-06-15 13:04 ` [Qemu-devel] [PATCH v3 3/8] ide: account UNMAP (TRIM) operations Alberto Garcia
2018-06-13 17:44 ` [Qemu-devel] [PATCH v3 4/8] scsi: store unmap offset and nb_sectors in request struct Anton Nefedov
2018-06-13 17:44 ` [Qemu-devel] [PATCH v3 5/8] scsi: move unmap error checking to the complete callback Anton Nefedov
2018-06-13 17:44 ` [Qemu-devel] [PATCH v3 6/8] scsi: account unmap operations Anton Nefedov
2018-06-13 17:44 ` [Qemu-devel] [PATCH v3 7/8] file-posix: account discard operations Anton Nefedov
2018-06-13 17:44 ` [Qemu-devel] [PATCH v3 8/8] qapi: query-blockstat: add driver specific file-posix stats Anton Nefedov
2018-06-13 18:29 ` [Qemu-devel] [PATCH v3 0/8] discard blockstats no-reply
2018-06-13 18:44 ` no-reply
2018-06-14 6:44 ` Anton Nefedov
2018-06-15 15:43 ` Markus Armbruster
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=1528911866-37489-4-git-send-email-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=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 \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).