projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
46cf053
)
locks: print unsigned ino in /proc/locks
author
Amir Goldstein
<amir73il@gmail.com>
Sun, 22 Dec 2019 18:45:28 +0000
(20:45 +0200)
committer
Jeff Layton
<jlayton@kernel.org>
Sun, 29 Dec 2019 14:00:58 +0000
(09:00 -0500)
An ino is unsigned, so display it as such in /proc/locks.
Cc: stable@vger.kernel.org
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
Signed-off-by: Jeff Layton <jlayton@kernel.org>
fs/locks.c
patch
|
blob
|
history
diff --git
a/fs/locks.c
b/fs/locks.c
index 6970f55daf54341f307a5052eb44b9e2d039ead8..44b6da0328426ba0f133733114973f7d7a526e6a 100644
(file)
--- 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:%l
d
", fl_pid,
+ seq_printf(f, "%d %02x:%02x:%l
u
", fl_pid,
MAJOR(inode->i_sb->s_dev),
MINOR(inode->i_sb->s_dev), inode->i_ino);
} else {