From 3af7cf7550d6ca151604e5390783f4bb0f7d1231 Mon Sep 17 00:00:00 2001 From: Kent Overstreet Date: Mon, 7 Apr 2025 23:34:34 -0400 Subject: [PATCH] Fix build with gcc 11 Signed-off-by: Kent Overstreet --- include/linux/dcache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/dcache.h b/include/linux/dcache.h index b9d0ea22..3317fe34 100644 --- a/include/linux/dcache.h +++ b/include/linux/dcache.h @@ -9,7 +9,7 @@ struct dentry { struct inode *d_inode; }; -static inline void shrink_dcache_sb(struct super_block *) {} +static inline void shrink_dcache_sb(struct super_block *sb) {} #define QSTR_INIT(n,l) { { { .len = l } }, .name = n } #define QSTR(n) (struct qstr)QSTR_INIT(n, strlen(n))