From 380442515e7049ff872858302ee10617181d531b Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Fri, 13 Feb 2026 15:33:30 -0800 Subject: [PATCH] Add scoutfs_alloc declaration to block.h block.h has an undeclared use of struct scoutfs_alloc that was relying on previous headers. Add a declaraion of the struct (that we don't dereference) so the header can be used on its own. Signed-off-by: Zach Brown --- kmod/src/block.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kmod/src/block.h b/kmod/src/block.h index bd1c2e57..aaa85f8e 100644 --- a/kmod/src/block.h +++ b/kmod/src/block.h @@ -1,6 +1,8 @@ #ifndef _SCOUTFS_BLOCK_H_ #define _SCOUTFS_BLOCK_H_ +struct scoutfs_alloc; + struct scoutfs_block_writer { spinlock_t lock; struct list_head dirty_list;