From: Namjae Jeon Date: Wed, 13 May 2026 01:44:46 +0000 (+0900) Subject: exfat: fix implicit declaration of brelse() X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0d1b2e1e02c11e29c953f22a485449e3da2a575;p=thirdparty%2Flinux.git exfat: fix implicit declaration of brelse() exfat_cluster_walk() calls brelse(bh) without including the header that declares the function, causing the following build error: fs/exfat/exfat_fs.h:542:9: error: implicit declaration of function ‘brelse’ [-Werror=implicit-function-declaration] Fix this by adding the missing buffer_head.h in exfat_fs.h. Acked-by: Christoph Hellwig Acked-by: "Darrick J. Wong" Signed-off-by: Namjae Jeon --- diff --git a/fs/exfat/exfat_fs.h b/fs/exfat/exfat_fs.h index e60b955da0d0..86ae468c965b 100644 --- a/fs/exfat/exfat_fs.h +++ b/fs/exfat/exfat_fs.h @@ -12,6 +12,7 @@ #include #include #include +#include #define EXFAT_ROOT_INO 1