From: Max Reitz <mreitz@redhat.com>
To: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>,
qemu-block@nongnu.org
Cc: kwolf@redhat.com, den@openvz.org, jsnow@redhat.com,
qemu-devel@nongnu.org
Subject: Re: [PATCH v2 4/6] util: introduce SharedResource
Date: Tue, 22 Oct 2019 12:23:27 +0200 [thread overview]
Message-ID: <111b7d67-ab40-1015-a45a-8440b6361633@redhat.com> (raw)
In-Reply-To: <20191016170905.8325-5-vsementsov@virtuozzo.com>
[-- Attachment #1.1: Type: text/plain, Size: 2760 bytes --]
On 16.10.19 19:09, Vladimir Sementsov-Ogievskiy wrote:
> Introduce an API for some shared splittable resource, like memory.
> It's going to be used by backup. Backup uses both read/write io and
> copy_range. copy_range may consume memory implictly, so the new API is
> abstract: it doesn't allocate any real memory by but only hands out
-by
> tickets.
>
> The idea is that we have some total amount of something and callers
> should wait in coroutine queue if there is not enough of the resource
> at the moment.
>
> Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
> ---
> include/qemu/co-shared-resource.h | 71 +++++++++++++++++++++++++++++
> util/qemu-co-shared-resource.c | 76 +++++++++++++++++++++++++++++++
> util/Makefile.objs | 1 +
> 3 files changed, 148 insertions(+)
> create mode 100644 include/qemu/co-shared-resource.h
> create mode 100644 util/qemu-co-shared-resource.c
>
> diff --git a/include/qemu/co-shared-resource.h b/include/qemu/co-shared-resource.h
> new file mode 100644
> index 0000000000..04c9c3d5be
> --- /dev/null
> +++ b/include/qemu/co-shared-resource.h
> @@ -0,0 +1,71 @@
> +/*
> + * Helper functionality for distributing a fixed total amount of
> + * an abstract resource among multiple coroutines.
> + *
> + * Copyright (c) 2019 Virtuozzo International GmbH
> + *
> + * Permission is hereby granted, free of charge, to any person obtaining a copy
> + * of this software and associated documentation files (the "Software"), to deal
> + * in the Software without restriction, including without limitation the rights
> + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
> + * copies of the Software, and to permit persons to whom the Software is
> + * furnished to do so, subject to the following conditions:
> + *
> + * The above copyright notice and this permission notice shall be included in
> + * all copies or substantial portions of the Software.
> + *
> + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
> + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
> + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
> + * THE SOFTWARE.
> + */
> +
> +#ifndef QEMU_CO_SHARED_AMOUNT_H
> +#define QEMU_CO_SHARED_AMOUNT_H
You should probably adjust these include guards to match the new filename.
With those bits fixed:
Reviewed-by: Max Reitz <mreitz@redhat.com>
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
next prev parent reply other threads:[~2019-10-22 10:25 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-16 17:08 [PATCH v2 0/6] block-copy: memory limit Vladimir Sementsov-Ogievskiy
2019-10-16 17:09 ` [PATCH v2 1/6] block/block-copy: allocate buffer in block_copy_with_bounce_buffer Vladimir Sementsov-Ogievskiy
2019-10-16 17:09 ` [PATCH v2 2/6] block/block-copy: limit copy_range_size to 16 MiB Vladimir Sementsov-Ogievskiy
2019-10-16 17:09 ` [PATCH v2 3/6] block/block-copy: refactor copying Vladimir Sementsov-Ogievskiy
2019-10-22 9:53 ` Max Reitz
2019-10-16 17:09 ` [PATCH v2 4/6] util: introduce SharedResource Vladimir Sementsov-Ogievskiy
2019-10-22 10:23 ` Max Reitz [this message]
2019-10-22 10:59 ` Vladimir Sementsov-Ogievskiy
2019-10-16 17:09 ` [PATCH v2 5/6] block/block-copy: add memory limit Vladimir Sementsov-Ogievskiy
2019-10-22 10:30 ` Max Reitz
2019-10-16 17:09 ` [PATCH v2 6/6] block/block-copy: increase buffered copy request Vladimir Sementsov-Ogievskiy
2019-10-22 10:36 ` Max Reitz
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=111b7d67-ab40-1015-a45a-8440b6361633@redhat.com \
--to=mreitz@redhat.com \
--cc=den@openvz.org \
--cc=jsnow@redhat.com \
--cc=kwolf@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 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).