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 2/2] ubi: expose the volume CRC check skip flag
Date: Wed, 27 Jun 2018 13:46:20 +0200 [thread overview]
Message-ID: <20180627134620.607ba108@bbrezillon> (raw)
In-Reply-To: <c439cfe60b003c8b0158a0f57a95057ab7e93b90.1530099128.git-series.quentin.schulz@bootlin.com>
On Wed, 27 Jun 2018 13:33:20 +0200
Quentin Schulz <quentin.schulz@bootlin.com> wrote:
> Now that we have the logic for skipping CRC check for static UBI volumes
> in the core, let's expose it to users.
>
> This makes use of a padding byte in the volume description data
> structure as a flag. This flag only tell for now whether we should skip
> the CRC check of a volume.
>
> This checks the UBI volume for which we are trying to skip the CRC check
> is static.
>
> 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>
> ---
> drivers/mtd/ubi/cdev.c | 4 ++++
> drivers/mtd/ubi/vmt.c | 3 +++
> include/uapi/mtd/ubi-user.h | 16 ++++++++++++++--
> 3 files changed, 21 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/mtd/ubi/cdev.c b/drivers/mtd/ubi/cdev.c
> index 45c3296..3eea1df 100644
> --- a/drivers/mtd/ubi/cdev.c
> +++ b/drivers/mtd/ubi/cdev.c
> @@ -622,6 +622,10 @@ static int verify_mkvol_req(const struct ubi_device *ubi,
> req->vol_type != UBI_STATIC_VOLUME)
> goto bad;
>
> + if (req->flags & UBI_VOL_SKIP_CRC_CHECK_FLG &&
> + req->vol_type != UBI_STATIC_VOLUME)
> + goto bad;
> +
> if (req->alignment > ubi->leb_size)
> goto bad;
>
> diff --git a/drivers/mtd/ubi/vmt.c b/drivers/mtd/ubi/vmt.c
> index e2606a4..729588b 100644
> --- a/drivers/mtd/ubi/vmt.c
> +++ b/drivers/mtd/ubi/vmt.c
> @@ -174,6 +174,9 @@ int ubi_create_volume(struct ubi_device *ubi, struct ubi_mkvol_req *req)
> vol->dev.class = &ubi_class;
> vol->dev.groups = volume_dev_groups;
>
> + if (req->flags & UBI_VOL_SKIP_CRC_CHECK_FLG)
> + vol->skip_check = 1;
> +
> spin_lock(&ubi->volumes_lock);
> if (vol_id == UBI_VOL_NUM_AUTO) {
> /* Find unused volume ID */
> diff --git a/include/uapi/mtd/ubi-user.h b/include/uapi/mtd/ubi-user.h
> index 5b04a49..ce76766 100644
> --- a/include/uapi/mtd/ubi-user.h
> +++ b/include/uapi/mtd/ubi-user.h
> @@ -285,6 +285,18 @@ struct ubi_attach_req {
> __s8 padding[10];
> };
>
> +/*
> + * UBI volume flags.
> + *
> + * @UBI_VOL_SKIP_CRC_CHECK_FLG: skip the CRC check done on static volumes 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.
> @@ -292,7 +304,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
> @@ -321,7 +333,7 @@ struct ubi_mkvol_req {
> __s32 alignment;
> __s64 bytes;
> __s8 vol_type;
> - __s8 padding1;
> + __u8 flags;
> __s16 name_len;
> __s8 padding2[4];
> char name[UBI_MAX_VOLUME_NAME + 1];
prev parent reply other threads:[~2018-06-27 11:46 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
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 [this message]
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=20180627134620.607ba108@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;
as well as URLs for NNTP newsgroup(s).