mirror of
https://github.com/acidanthera/audk.git
synced 2025-09-23 17:57:45 +02:00
Ext4Pkg: Advertise CSUM_SEED as supported
We had added support for CSUM_SEED but accidentally forgot to advertise it in gSupportedIncompatFeat. This made it (erroneously) impossible to mount CSUM_SEED filesystems. Detected by attempting to mount a relatively new mkfs.ext4'd filesystem. Cc: Marvin Häuser <mhaeuser@posteo.de> Signed-off-by: Pedro Falcato <pedro.falcato@gmail.com> Reviewed-by: Marvin Häuser <mhaeuser@posteo.de>
This commit is contained in:
parent
fbb823890c
commit
c0705373c2
@ -1,7 +1,7 @@
|
|||||||
/** @file
|
/** @file
|
||||||
Superblock managing routines
|
Superblock managing routines
|
||||||
|
|
||||||
Copyright (c) 2021 - 2022 Pedro Falcato All rights reserved.
|
Copyright (c) 2021 - 2023 Pedro Falcato All rights reserved.
|
||||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||||
**/
|
**/
|
||||||
|
|
||||||
@ -18,7 +18,7 @@ STATIC CONST UINT32 gSupportedIncompatFeat =
|
|||||||
EXT4_FEATURE_INCOMPAT_64BIT | EXT4_FEATURE_INCOMPAT_DIRDATA |
|
EXT4_FEATURE_INCOMPAT_64BIT | EXT4_FEATURE_INCOMPAT_DIRDATA |
|
||||||
EXT4_FEATURE_INCOMPAT_FLEX_BG | EXT4_FEATURE_INCOMPAT_FILETYPE |
|
EXT4_FEATURE_INCOMPAT_FLEX_BG | EXT4_FEATURE_INCOMPAT_FILETYPE |
|
||||||
EXT4_FEATURE_INCOMPAT_EXTENTS | EXT4_FEATURE_INCOMPAT_LARGEDIR |
|
EXT4_FEATURE_INCOMPAT_EXTENTS | EXT4_FEATURE_INCOMPAT_LARGEDIR |
|
||||||
EXT4_FEATURE_INCOMPAT_MMP | EXT4_FEATURE_INCOMPAT_RECOVER;
|
EXT4_FEATURE_INCOMPAT_MMP | EXT4_FEATURE_INCOMPAT_RECOVER | EXT4_FEATURE_INCOMPAT_CSUM_SEED;
|
||||||
|
|
||||||
// Future features that may be nice additions in the future:
|
// Future features that may be nice additions in the future:
|
||||||
// 1) Btree support: Required for write support and would speed up lookups in large directories.
|
// 1) Btree support: Required for write support and would speed up lookups in large directories.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user