All of lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Lieven <pl@kamp.de>
To: Kevin Wolf <kwolf@redhat.com>
Cc: benoit.canet@irqsave.net, Paolo Bonzini <pbonzini@redhat.com>,
	maxa@catit.be, qemu-devel@nongnu.org, stefanha@redhat.com
Subject: Re: [Qemu-devel] [Fwd: [PATCH v4 07/21] iscsi: Handle failure for potentially large allocations]
Date: Fri, 22 Aug 2014 09:40:13 +0200	[thread overview]
Message-ID: <53F6F3DD.2090804@kamp.de> (raw)
In-Reply-To: <00c425bd67fc66567dc683205f8f60f7.squirrel@ssl.dlhnet.de>

Am 22.08.2014 um 09:35 schrieb Peter Lieven:
> Some code in the block layer makes potentially huge allocations. Failure
> is not completely unexpected there, so avoid aborting qemu and handle
> out-of-memory situations gracefully.
>
> This patch addresses the allocations in the iscsi block driver.
>
> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
> Acked-by: Paolo Bonzini <pbonzini@redhat.com>
> Reviewed-by: Benoit Canet <benoit@irqsave.net>
> Reviewed-by: Eric Blake <eblake@redhat.com>
> ---
>  block/iscsi.c | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/block/iscsi.c b/block/iscsi.c
> index 84aa22a..06afa78 100644
> --- a/block/iscsi.c
> +++ b/block/iscsi.c
> @@ -893,7 +893,10 @@ coroutine_fn iscsi_co_write_zeroes(BlockDriverState
> *bs, int64_t sector_num,
>      nb_blocks = sector_qemu2lun(nb_sectors, iscsilun);
>
>      if (iscsilun->zeroblock == NULL) {
> -        iscsilun->zeroblock = g_malloc0(iscsilun->block_size);
> +        iscsilun->zeroblock = g_try_malloc0(iscsilun->block_size);
> +        if (iscsilun->zeroblock == NULL) {
> +            return -ENOMEM;
> +        }
>      }
>
>      iscsi_co_init_iscsitask(iscsilun, &iTask);

Unfortunately, I missed that one. The zeroblock is typicalls 512 Byte or 4K depending
on the blocksize. What is significantly larger is the allocationmap. It is typically created
on iscsi_open, but is also recreated on iscsi_truncate. I don't have the context why this
patch was introduced, but I would vote for introducing a bitmap_try_new and issue
a warning if the allocation fails. The allocationmap is optional we can work without it.
If the pointer is NULL its not used.

Peter

       reply	other threads:[~2014-08-22  7:40 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <00c425bd67fc66567dc683205f8f60f7.squirrel@ssl.dlhnet.de>
2014-08-22  7:40 ` Peter Lieven [this message]
2014-08-22  8:42   ` [Qemu-devel] [Fwd: [PATCH v4 07/21] iscsi: Handle failure for potentially large allocations] Kevin Wolf
2014-08-22  8:59     ` Peter Lieven
2014-08-24 16:30     ` Paolo Bonzini
2014-08-24 19:31       ` Peter Lieven
2014-08-25  8:56         ` Paolo Bonzini
2014-08-25  9:56           ` Peter Lieven

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=53F6F3DD.2090804@kamp.de \
    --to=pl@kamp.de \
    --cc=benoit.canet@irqsave.net \
    --cc=kwolf@redhat.com \
    --cc=maxa@catit.be \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@redhat.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.