Merge tag 'locks-v5.5-1' of git://git.kernel.org/pub/scm/linux/kernel/git/jlayton/linux

Pull /proc/locks formatting fix from Jeff Layton:
"This is a trivial fix for a _very_ long standing bug in /proc/locks
formatting. Ordinarily, I'd wait for the merge window for something
like this, but it is making it difficult to validate some overlayfs
fixes.

I've also gone ahead and marked this for stable"

* tag 'locks-v5.5-1' of git://git.kernel.org/pub/scm/linux/kernel/git/jlayton/linux:
locks: print unsigned ino in /proc/locks

Changed files
+1 -1
fs
+1 -1
fs/locks.c
··· 2853 2853 } 2854 2854 if (inode) { 2855 2855 /* userspace relies on this representation of dev_t */ 2856 - seq_printf(f, "%d %02x:%02x:%ld ", fl_pid, 2856 + seq_printf(f, "%d %02x:%02x:%lu ", fl_pid, 2857 2857 MAJOR(inode->i_sb->s_dev), 2858 2858 MINOR(inode->i_sb->s_dev), inode->i_ino); 2859 2859 } else {