From: Quentin Schulz Date: Tue, 28 Oct 2025 14:02:19 +0000 (+0100) Subject: ext4: include missing blk.h X-Git-Tag: v2026.01-rc2~14 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6e817d51ef52062d3f4352ab957321025e0f3406;p=thirdparty%2Fu-boot.git ext4: include missing blk.h If missing, lbaint_t typedef will not be found in some cases. [The proper fix for the commit above at the time would have been to include ide.h as only since commit 1a73661bc7a7 ("dm: Add a new header for block devices") is the typedef in blk.h] Fixes: 04735e9c5578 ("Fix ext2/ext4 filesystem accesses beyond 2TiB") Signed-off-by: Quentin Schulz --- diff --git a/include/ext_common.h b/include/ext_common.h index 6e17fbd2771..09fb2aeb4d9 100644 --- a/include/ext_common.h +++ b/include/ext_common.h @@ -20,6 +20,7 @@ #ifndef __EXT_COMMON__ #define __EXT_COMMON__ +#include #include struct cmd_tbl;