From: Andreas Gruenbacher Date: Tue, 28 Jan 2025 00:39:23 +0000 (+0100) Subject: bcachefs: EYTZINGER_DEBUG fix X-Git-Tag: v6.15-rc1~146^2~126 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d54b82ecc415ae2e563e6087acaf0e3c5d24daf5;p=thirdparty%2Fkernel%2Flinux.git bcachefs: EYTZINGER_DEBUG fix When EYTZINGER_DEBUG is defined, needs to be included. Signed-off-by: Andreas Gruenbacher Signed-off-by: Kent Overstreet --- diff --git a/fs/bcachefs/eytzinger.h b/fs/bcachefs/eytzinger.h index 0541192d7bc02..5f2f96b1295ef 100644 --- a/fs/bcachefs/eytzinger.h +++ b/fs/bcachefs/eytzinger.h @@ -6,6 +6,7 @@ #include #ifdef EYTZINGER_DEBUG +#include #define EYTZINGER_BUG_ON(cond) BUG_ON(cond) #else #define EYTZINGER_BUG_ON(cond)