From 6e817d51ef52062d3f4352ab957321025e0f3406 Mon Sep 17 00:00:00 2001 From: Quentin Schulz Date: Tue, 28 Oct 2025 15:02:19 +0100 Subject: [PATCH] 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 --- include/ext_common.h | 1 + 1 file changed, 1 insertion(+) 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; -- 2.47.3