Re: [PATCH v3 01/12] vfs: widen inode hash/lookup functions to u64
From: Christoph Hellwig
Date: Thu Mar 05 2026 - 09:41:16 EST
> extern struct inode *ilookup5_nowait(struct super_block *sb,
> - unsigned long hashval, int (*test)(struct inode *, void *),
> + u64 hashval, int (*test)(struct inode *, void *),
> void *data, bool *isnew);
> -extern struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
> +extern struct inode *ilookup5(struct super_block *sb, u64 hashval,
> int (*test)(struct inode *, void *), void *data);
...
Can you please drop all these pointless externs while you're at it?
Otherwise looks good:
Reviewed-by: Christoph Hellwig <hch@xxxxxx>