From: Boris Brezillon <boris.brezillon@bootlin.com>
To: Quentin Schulz <quentin.schulz@bootlin.com>
Cc: dedekind1@gmail.com, richard@nod.at, dwmw2@infradead.org,
computersforpeace@gmail.com, marek.vasut@gmail.com,
linux-mtd@lists.infradead.org, thomas.petazzoni@bootlin.com,
david.oberhollenzer@sigma-star.at
Subject: Re: [PATCH v2 1/4] UBI: update ubi-user.h and ubi-media.h
Date: Thu, 28 Jun 2018 09:50:31 +0200 [thread overview]
Message-ID: <20180628095031.1cc8ae67@bbrezillon> (raw)
In-Reply-To: <20180628074344.10249-2-quentin.schulz@bootlin.com>
On Thu, 28 Jun 2018 09:43:41 +0200
Quentin Schulz <quentin.schulz@bootlin.com> wrote:
> Update both header files to add support for flag specifying whether to
> skip the CRC check for static UBI volumes.
>
> Taken from the kernel headers.
>
> Some users of static UBI volumes implement their own integrity check,
> thus making the volume CRC check done at open time useless. For
> instance, this is the case when one use the ubiblock + dm-verity +
> squashfs combination, where dm-verity already checks integrity of the
> block device but this time at the block granularity instead of verifying
> the whole volume.
>
> Skipping this test drastically improves the boot-time.
>
> Suggested-by: Boris Brezillon <boris.brezillon@bootlin.com>
> Signed-off-by: Quentin Schulz <quentin.schulz@bootlin.com>
Reviewed-by: Boris Brezillon <boris.brezillon@bootlin.com>
> ---
> include/mtd/ubi-media.h | 6 ++++++
> include/mtd/ubi-user.h | 16 ++++++++++++++--
> 2 files changed, 20 insertions(+), 2 deletions(-)
>
> diff --git a/include/mtd/ubi-media.h b/include/mtd/ubi-media.h
> index 08bec3e..132cc24 100644
> --- a/include/mtd/ubi-media.h
> +++ b/include/mtd/ubi-media.h
> @@ -61,6 +61,11 @@ enum {
> * Volume flags used in the volume table record.
> *
> * @UBI_VTBL_AUTORESIZE_FLG: auto-resize this volume
> + * @UBI_VTBL_SKIP_CRC_CHECK_FLG: skip the CRC check done on a static volume at
> + * open time. Should only be set on volumes that
> + * are used by upper layers doing this kind of
> + * check. Main use-case for this flag is
> + * boot-time reduction
> *
> * %UBI_VTBL_AUTORESIZE_FLG flag can be set only for one volume in the volume
> * table. UBI automatically re-sizes the volume which has this flag and makes
> @@ -92,6 +97,7 @@ enum {
> */
> enum {
> UBI_VTBL_AUTORESIZE_FLG = 0x01,
> + UBI_VTBL_SKIP_CRC_CHECK_FLG = 0x02,
> };
>
> /*
> diff --git a/include/mtd/ubi-user.h b/include/mtd/ubi-user.h
> index 2b50dad..707c4f2 100644
> --- a/include/mtd/ubi-user.h
> +++ b/include/mtd/ubi-user.h
> @@ -279,6 +279,18 @@ struct ubi_attach_req {
> int8_t padding[10];
> };
>
> +/*
> + * UBI volume flags.
> + *
> + * @UBI_VOL_SKIP_CRC_CHECK_FLG: skip the CRC check done on a static volume at
> + * open time. Only valid for static volumes and
> + * should only be used if the volume user has a
> + * way to verify data integrity
> + */
> +enum {
> + UBI_VOL_SKIP_CRC_CHECK_FLG = 0x1,
> +};
> +
> /**
> * struct ubi_mkvol_req - volume description data structure used in
> * volume creation requests.
> @@ -286,7 +298,7 @@ struct ubi_attach_req {
> * @alignment: volume alignment
> * @bytes: volume size in bytes
> * @vol_type: volume type (%UBI_DYNAMIC_VOLUME or %UBI_STATIC_VOLUME)
> - * @padding1: reserved for future, not used, has to be zeroed
> + * @flags: volume flags (%UBI_VOL_SKIP_CRC_CHECK_FLG)
> * @name_len: volume name length
> * @padding2: reserved for future, not used, has to be zeroed
> * @name: volume name
> @@ -315,7 +327,7 @@ struct ubi_mkvol_req {
> int32_t alignment;
> int64_t bytes;
> int8_t vol_type;
> - int8_t padding1;
> + uint8_t flags;
> int16_t name_len;
> int8_t padding2[4];
> char name[UBI_MAX_VOLUME_NAME + 1];
next prev parent reply other threads:[~2018-06-28 7:50 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-28 7:43 [PATCH v2 0/4] ubi-utils: add possibility to flag a static volume to skip CRC check when opening Quentin Schulz
2018-06-28 7:43 ` [PATCH v2 1/4] UBI: update ubi-user.h and ubi-media.h Quentin Schulz
2018-06-28 7:50 ` Boris Brezillon [this message]
2018-06-28 7:43 ` [PATCH v2 2/4] libubi: add volume flags to ubi_mkvol_request Quentin Schulz
2018-06-28 7:50 ` Boris Brezillon
2018-06-28 7:43 ` [PATCH v2 3/4] ubi-utils: ubimkvol: add support for skipping CRC check of a static volume when opening Quentin Schulz
2018-06-28 7:50 ` Boris Brezillon
2018-06-28 7:43 ` [PATCH v2 4/4] ubi-utils: ubinize: " Quentin Schulz
2018-06-28 7:50 ` Boris Brezillon
2018-06-28 11:48 ` [PATCH v2 0/4] ubi-utils: add possibility to flag a static volume to skip CRC check " David Oberhollenzer
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=20180628095031.1cc8ae67@bbrezillon \
--to=boris.brezillon@bootlin.com \
--cc=computersforpeace@gmail.com \
--cc=david.oberhollenzer@sigma-star.at \
--cc=dedekind1@gmail.com \
--cc=dwmw2@infradead.org \
--cc=linux-mtd@lists.infradead.org \
--cc=marek.vasut@gmail.com \
--cc=quentin.schulz@bootlin.com \
--cc=richard@nod.at \
--cc=thomas.petazzoni@bootlin.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).