Re: [PATCH 4/8] rpdfs: add inode change debugging routine
Zach Brown <[email protected]> Mon, 27 Apr 2026 15:25:10 -0700
| Newsgroups | dev.linux.lists.rpdfs-devel |
|---|---|
| Message-ID | <[email protected]> |
On Fri, Apr 24, 2026 at 04:05:16PM +0200, Valerie Aurora wrote:
> print_inode_change() can be added to copy_vfs_inode_to_rinode() to
> log what has changed since the last inode update.
> +static inline void print_diff64(char *name, u64 new, u64 old)
> +{
> + old = le64_to_cpu(old);
Hmm, not building with sparse bitwise checking (C=2)? There a few more of
these in the rest of the series but I won't call them out.
With that fixed this'd be fine.
- z