qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Stefan Hajnoczi <stefanha@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>,
	Peter Lieven <pl@kamp.de>, Stefan Hajnoczi <stefanha@redhat.com>
Subject: [Qemu-devel] [PULL v3 32/38] block: limited request size in write zeroes unsupported path
Date: Tue, 13 Jan 2015 13:48:10 +0000	[thread overview]
Message-ID: <1421156896-11599-33-git-send-email-stefanha@redhat.com> (raw)
In-Reply-To: <1421156896-11599-1-git-send-email-stefanha@redhat.com>

From: Peter Lieven <pl@kamp.de>

If bs->bl.max_write_zeroes is large and we end up in the unsupported
path we might allocate a lot of memory for the iovector and/or even
generate an oversized requests.

Fix this by limiting the request by the minimum of the reported
maximum transfer size or 16MB (32768 sectors).

Reported-by: Denis V. Lunev <den@openvz.org>
Signed-off-by: Peter Lieven <pl@kamp.de>
Reviewed-by: Denis V. Lunev <den@openvz.org>
Message-id: 1420457389-16332-1-git-send-email-pl@kamp.de
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
 block.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/block.c b/block.c
index e76a223..371d0f6 100644
--- a/block.c
+++ b/block.c
@@ -3244,6 +3244,9 @@ static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs,
 
         if (ret == -ENOTSUP) {
             /* Fall back to bounce buffer if write zeroes is unsupported */
+            int max_xfer_len = MIN_NON_ZERO(bs->bl.max_transfer_length,
+                                            MAX_WRITE_ZEROES_DEFAULT);
+            num = MIN(num, max_xfer_len);
             iov.iov_len = num * BDRV_SECTOR_SIZE;
             if (iov.iov_base == NULL) {
                 iov.iov_base = qemu_try_blockalign(bs, num * BDRV_SECTOR_SIZE);
@@ -3260,7 +3263,7 @@ static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs,
             /* Keep bounce buffer around if it is big enough for all
              * all future requests.
              */
-            if (num < max_write_zeroes) {
+            if (num < max_xfer_len) {
                 qemu_vfree(iov.iov_base);
                 iov.iov_base = NULL;
             }
-- 
2.1.0

  parent reply	other threads:[~2015-01-13 13:49 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-13 13:47 [Qemu-devel] [PULL v3 00/38] Block patches Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 01/38] qemu-iotests: Remove 091 from quick group Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 02/38] qemu-iotests: Speed up make check-block Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 03/38] block: mark AioContext as recursive Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 04/38] block: do not allocate an iovec per read of a growable/zero_after_eof BDS Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 05/38] block: replace g_new0 with g_new for bottom half allocation Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 06/38] checkpatch: Brace handling on multi-line condition Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 07/38] block: Get full backing filename from string Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 08/38] block: JSON filenames and relative backing files Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 09/38] block: Relative backing file for image creation Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 10/38] block/vmdk: Relative backing file for creation Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 11/38] iotests: Add test for relative backing file names Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 12/38] qapi: Fix document for BlockStats.node-name Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 13/38] block: fix spoiling all dirty bitmaps by mirror and migration Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 14/38] qapi: Comment version info in TransactionAction Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 15/38] qmp: Add command 'blockdev-backup' Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 16/38] block: Add blockdev-backup to transaction Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 17/38] qemu-iotests: Test blockdev-backup in 055 Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 18/38] iotests: Filter out "I/O thread spun..." warning Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 19/38] migration/block: fix pending() return value Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 20/38] libqos: Convert malloc-pc allocator to a generic allocator Stefan Hajnoczi
2015-01-13 13:47 ` [Qemu-devel] [PULL v3 21/38] .gitignore: Ignore generated "common.env" Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 22/38] qemu-iotests: Replace "/bin/true" with "true" Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 23/38] qemu-iotests: Add "_supported_os Linux" to 058 Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 24/38] qemu-iotests: Add supported os parameter for python tests Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 25/38] coroutine-ucontext: use __thread Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 26/38] qemu-thread: add per-thread atexit functions Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 27/38] test-coroutine: avoid overflow on 32-bit systems Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 28/38] QSLIST: add lock-free operations Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 29/38] coroutine: rewrite pool to avoid mutex Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 30/38] coroutine: drop qemu_coroutine_adjust_pool_size Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 31/38] coroutine: try harder not to delete coroutines Stefan Hajnoczi
2015-01-13 13:48 ` Stefan Hajnoczi [this message]
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 33/38] block: Split BLOCK_OP_TYPE_COMMIT to BLOCK_OP_TYPE_COMMIT_{SOURCE, TARGET} Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 34/38] ide: Implement VPD response for ATAPI Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 35/38] nvme: Fix get/set number of queues feature Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 36/38] MAINTAINERS: Update email addresses for Chrysostomos Nanakos Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 37/38] MAINTAINERS: Add migration/block* to block subsystem Stefan Hajnoczi
2015-01-13 13:48 ` [Qemu-devel] [PULL v3 38/38] NVMe: Set correct VS Value for 1.1 Compliant Controllers Stefan Hajnoczi
2015-01-13 14:37 ` [Qemu-devel] [PULL v3 00/38] Block patches Peter Maydell

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=1421156896-11599-33-git-send-email-stefanha@redhat.com \
    --to=stefanha@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=pl@kamp.de \
    --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).