On Thu, Feb 26, 2026 at 10:55:59AM -0500, Jeff Layton wrote: > Update format strings from %lu to %llu for inode->i_ino now that > i_ino is u64 instead of unsigned long. > > Signed-off-by: Jeff Layton <[email protected]> > --- > fs/crypto/crypto.c | 2 +- > fs/crypto/hooks.c | 2 +- > fs/crypto/keysetup.c | 2 +- > 3 files changed, 3 insertions(+), 3 deletions(-)
check_for_busy_inodes() needs to be updated too. It copies i_ino to a local variable of type 'unsigned long', then prints it with %lu. Seems that there needs to be a search for other code that copies i_ino to a local variable, as this issue is unlikely to be unique to here. - Eric
