summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2025-04-07 23:34:34 -0400
committerKent Overstreet <kent.overstreet@linux.dev>2025-04-13 10:13:49 -0400
commit3af7cf7550d6ca151604e5390783f4bb0f7d1231 (patch)
tree2ff08e4f1f1c101e7d349352b694068716aa1211
parent24f9bd29a6755d4114e061c4162854d6f8a910a2 (diff)
Fix build with gcc 11
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r--include/linux/dcache.h2
1 files changed, 1 insertions, 1 deletions
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))