[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v11 06/13] block: modify the comment for BDRV_REQ_PREFETCH fl
From: |
Max Reitz |
Subject: |
Re: [PATCH v11 06/13] block: modify the comment for BDRV_REQ_PREFETCH flag |
Date: |
Wed, 14 Oct 2020 14:22:29 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.11.0 |
On 12.10.20 19:43, Andrey Shinkevich wrote:
> Modify the comment for the flag BDRV_REQ_PREFETCH as we are going to
> use it alone and pass it to the COR-filter driver for further
> processing.
>
> Signed-off-by: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com>
> ---
> include/block/block.h | 7 ++++---
> 1 file changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/include/block/block.h b/include/block/block.h
> index 981ab5b..2b7efd1 100644
> --- a/include/block/block.h
> +++ b/include/block/block.h
> @@ -71,9 +71,10 @@ typedef enum {
> BDRV_REQ_NO_FALLBACK = 0x100,
>
> /*
> - * BDRV_REQ_PREFETCH may be used only together with BDRV_REQ_COPY_ON_READ
> - * on read request and means that caller doesn't really need data to be
> - * written to qiov parameter which may be NULL.
> + * BDRV_REQ_PREFETCH may be used together with the BDRV_REQ_COPY_ON_READ
> + * flag or when the COR-filter applied to read operations and means that
There’s some word missing here, but I’m not sure what it is... At least
an “is” before “applied”. Perhaps something like ”or when a COR filter
is involved (in read operations)” would be better.
> + * caller doesn't really need data to be written to qiov parameter which
And this “written to” confused me for a second, because we’re reading
into qiov. Technically, that means writing into the buffer, but, you know.
Could we rewrite the whole thing, perhaps? Something like
“BDRV_REQ_PREFETCH makes sense only in the context of copy-on-read
(i.e., together with the BDRV_REQ_COPY_ON_READ flag or when there is a
COR filter), in which case it signals that the COR operation need not
read the data into memory (qiov), but only ensure it is copied to the
top layer (i.e., that COR is done).”
I don’t know.
Max
> + * may be NULL.
> */
> BDRV_REQ_PREFETCH = 0x200,
> /* Mask of valid flags */
>
signature.asc
Description: OpenPGP digital signature
- Re: [PATCH v11 04/13] copy-on-read: pass overlay base node name to COR driver, (continued)
[PATCH v11 05/13] copy-on-read: limit COR operations to base in COR driver, Andrey Shinkevich, 2020/10/12
[PATCH v11 06/13] block: modify the comment for BDRV_REQ_PREFETCH flag, Andrey Shinkevich, 2020/10/12
- Re: [PATCH v11 06/13] block: modify the comment for BDRV_REQ_PREFETCH flag,
Max Reitz <=
[PATCH v11 07/13] block: include supported_read_flags into BDS structure, Andrey Shinkevich, 2020/10/12
[PATCH v11 08/13] copy-on-read: add support for BDRV_REQ_PREFETCH to COR-filter, Andrey Shinkevich, 2020/10/12
[PATCH v11 09/13] copy-on-read: skip non-guest reads if no copy needed, Andrey Shinkevich, 2020/10/12