public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
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, linux-kernel@vger.kernel.org,
	thomas.petazzoni@bootlin.com
Subject: Re: [PATCH v2 1/2] ubi: provide a way to skip CRC checks
Date: Wed, 27 Jun 2018 13:44:56 +0200	[thread overview]
Message-ID: <20180627134456.522a1c96@bbrezillon> (raw)
In-Reply-To: <b94a9de06741a9a87807fa4d599504503798a835.1530099128.git-series.quentin.schulz@bootlin.com>

On Wed, 27 Jun 2018 13:33:19 +0200
Quentin Schulz <quentin.schulz@bootlin.com> wrote:

> 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>

Just a few minor comments (see below).

Reviewed-by: Boris Brezillon <boris.brezillon@bootlin.com>

> ---
>  drivers/mtd/ubi/kapi.c      |  2 +-
>  drivers/mtd/ubi/ubi-media.h |  6 ++++++
>  drivers/mtd/ubi/ubi.h       |  4 ++++
>  drivers/mtd/ubi/vmt.c       |  9 +++++++++
>  drivers/mtd/ubi/vtbl.c      |  3 +++
>  5 files changed, 23 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/mtd/ubi/kapi.c b/drivers/mtd/ubi/kapi.c
> index d4b2e87..e9e9ecb 100644
> --- a/drivers/mtd/ubi/kapi.c
> +++ b/drivers/mtd/ubi/kapi.c
> @@ -202,7 +202,7 @@ struct ubi_volume_desc *ubi_open_volume(int ubi_num, int vol_id, int mode)
>  	desc->mode = mode;
>  
>  	mutex_lock(&ubi->ckvol_mutex);
> -	if (!vol->checked) {
> +	if (!vol->checked && !vol->skip_check) {
>  		/* This is the first open - check the volume */
>  		err = ubi_check_volume(ubi, vol_id);
>  		if (err < 0) {
> diff --git a/drivers/mtd/ubi/ubi-media.h b/drivers/mtd/ubi/ubi-media.h
> index 195ff8c..f43a4ff 100644
> --- a/drivers/mtd/ubi/ubi-media.h
> +++ b/drivers/mtd/ubi/ubi-media.h
> @@ -45,6 +45,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 static volume at

								      ^ volumes?

> + *				 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
> @@ -76,6 +81,7 @@ enum {
>   */
>  enum {
>  	UBI_VTBL_AUTORESIZE_FLG = 0x01,
> +	UBI_VTBL_SKIP_CRC_CHECK_FLG = 0x02,
>  };
>  
>  /*
> diff --git a/drivers/mtd/ubi/ubi.h b/drivers/mtd/ubi/ubi.h
> index f5ba97c..429102b 100644
> --- a/drivers/mtd/ubi/ubi.h
> +++ b/drivers/mtd/ubi/ubi.h
> @@ -327,6 +327,9 @@ struct ubi_eba_leb_desc {
>   *           atomic LEB change
>   *
>   * @eba_tbl: EBA table of this volume (LEB->PEB mapping)
> + * @skip_check: %1 if CRC check of static volumes should be skipped. Directly
> + *		reflect the presence of the %UBI_VTBL_SKIP_CRC_CHECK_FLG in the

		^ reflects?		    ^ %UBI_VTBL_SKIP_CRC_CHECK_FLG *flag* in

> + *		vtbl entry
>   * @checked: %1 if this static volume was checked
>   * @corrupted: %1 if the volume is corrupted (static volumes only)
>   * @upd_marker: %1 if the update marker is set for this volume
> @@ -374,6 +377,7 @@ struct ubi_volume {
>  	void *upd_buf;
>  
>  	struct ubi_eba_table *eba_tbl;
> +	unsigned int skip_check:1;
>  	unsigned int checked:1;
>  	unsigned int corrupted:1;
>  	unsigned int upd_marker:1;
> diff --git a/drivers/mtd/ubi/vmt.c b/drivers/mtd/ubi/vmt.c
> index 0be5167..e2606a4 100644
> --- a/drivers/mtd/ubi/vmt.c
> +++ b/drivers/mtd/ubi/vmt.c
> @@ -299,6 +299,10 @@ int ubi_create_volume(struct ubi_device *ubi, struct ubi_mkvol_req *req)
>  		vtbl_rec.vol_type = UBI_VID_DYNAMIC;
>  	else
>  		vtbl_rec.vol_type = UBI_VID_STATIC;
> +
> +	if (vol->skip_check)
> +		vtbl_rec.flags |= UBI_VTBL_SKIP_CRC_CHECK_FLG;
> +
>  	memcpy(vtbl_rec.name, vol->name, vol->name_len);
>  
>  	err = ubi_change_vtbl_record(ubi, vol_id, &vtbl_rec);
> @@ -733,6 +737,11 @@ static int self_check_volume(struct ubi_device *ubi, int vol_id)
>  			ubi_err(ubi, "bad used_bytes");
>  			goto fail;
>  		}
> +
> +		if (vol->skip_check) {
> +			ubi_err(ubi, "bad skip_check");
> +			goto fail;
> +		}
>  	} else {
>  		if (vol->used_ebs < 0 || vol->used_ebs > vol->reserved_pebs) {
>  			ubi_err(ubi, "bad used_ebs");
> diff --git a/drivers/mtd/ubi/vtbl.c b/drivers/mtd/ubi/vtbl.c
> index 94d7a86..2c133cd 100644
> --- a/drivers/mtd/ubi/vtbl.c
> +++ b/drivers/mtd/ubi/vtbl.c
> @@ -560,6 +560,9 @@ static int init_volumes(struct ubi_device *ubi,
>  		vol->name[vol->name_len] = '\0';
>  		vol->vol_id = i;
>  
> +		if (vtbl[i].flags & UBI_VTBL_SKIP_CRC_CHECK_FLG)
> +			vol->skip_check = 1;
> +
>  		if (vtbl[i].flags & UBI_VTBL_AUTORESIZE_FLG) {
>  			/* Auto re-size flag may be set only for one volume */
>  			if (ubi->autoresize_vol_id != -1) {


  reply	other threads:[~2018-06-27 11:45 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-27 11:33 [PATCH v2 0/2] add possibility to skip CRC check for static UBI volumes Quentin Schulz
2018-06-27 11:33 ` [PATCH v2 1/2] ubi: provide a way to skip CRC checks Quentin Schulz
2018-06-27 11:44   ` Boris Brezillon [this message]
2018-06-27 11:33 ` [PATCH v2 2/2] ubi: expose the volume CRC check skip flag Quentin Schulz
2018-06-27 11:46   ` Boris Brezillon

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=20180627134456.522a1c96@bbrezillon \
    --to=boris.brezillon@bootlin.com \
    --cc=computersforpeace@gmail.com \
    --cc=dedekind1@gmail.com \
    --cc=dwmw2@infradead.org \
    --cc=linux-kernel@vger.kernel.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