diff options
author | Quentin Schulz <quentin.schulz@bootlin.com> | 2018-06-28 09:43:41 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2018-06-28 10:21:22 +0200 |
commit | 8ba21ab75b41a1f9a6e27eed3ea80c9829669c5a (patch) | |
tree | 6a5bbe666089eb2f12240e4f8c6bed82d95ae42a /include/mtd/ubi-media.h | |
parent | 45c59cf18220485f7999ab988c5b10fad385298d (diff) |
UBI: update ubi-user.h and ubi-media.h
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>
Reviewed-by: Boris Brezillon <boris.brezillon@bootlin.com>
Signed-off-by: Quentin Schulz <quentin.schulz@bootlin.com>
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include/mtd/ubi-media.h')
-rw-r--r-- | include/mtd/ubi-media.h | 6 |
1 files changed, 6 insertions, 0 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, }; /* |