diff options
| author | Amir Goldstein <[email protected]> | 2019-12-22 18:45:28 +0000 |
|---|---|---|
| committer | Jeff Layton <[email protected]> | 2019-12-29 14:00:58 +0000 |
| commit | 98ca480a8f22fdbd768e3dad07024c8d4856576c (patch) | |
| tree | 867b336245fb18958569d91b3bb0b4d8b0f02aa8 | |
| parent | Linux 5.5-rc3 (diff) | |
| download | kernel-98ca480a8f22fdbd768e3dad07024c8d4856576c.tar.gz kernel-98ca480a8f22fdbd768e3dad07024c8d4856576c.zip | |
locks: print unsigned ino in /proc/locks
An ino is unsigned, so display it as such in /proc/locks.
Cc: [email protected]
Signed-off-by: Amir Goldstein <[email protected]>
Signed-off-by: Jeff Layton <[email protected]>
| -rw-r--r-- | fs/locks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/locks.c b/fs/locks.c index 6970f55daf54..44b6da032842 100644 --- a/fs/locks.c +++ b/fs/locks.c @@ -2853,7 +2853,7 @@ static void lock_get_status(struct seq_file *f, struct file_lock *fl, } if (inode) { /* userspace relies on this representation of dev_t */ - seq_printf(f, "%d %02x:%02x:%ld ", fl_pid, + seq_printf(f, "%d %02x:%02x:%lu ", fl_pid, MAJOR(inode->i_sb->s_dev), MINOR(inode->i_sb->s_dev), inode->i_ino); } else { |
