diff options
-rw-r--r-- | fs/locks.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/fs/locks.c b/fs/locks.c index 3ebaafb4c587..16cae1a00851 100644 --- a/fs/locks.c +++ b/fs/locks.c | |||
@@ -2565,15 +2565,10 @@ static void lock_get_status(struct seq_file *f, struct file_lock *fl, | |||
2565 | : (fl->fl_type == F_WRLCK) ? "WRITE" : "READ "); | 2565 | : (fl->fl_type == F_WRLCK) ? "WRITE" : "READ "); |
2566 | } | 2566 | } |
2567 | if (inode) { | 2567 | if (inode) { |
2568 | #ifdef WE_CAN_BREAK_LSLK_NOW | 2568 | /* userspace relies on this representation of dev_t */ |
2569 | seq_printf(f, "%d %s:%ld ", fl_pid, | ||
2570 | inode->i_sb->s_id, inode->i_ino); | ||
2571 | #else | ||
2572 | /* userspace relies on this representation of dev_t ;-( */ | ||
2573 | seq_printf(f, "%d %02x:%02x:%ld ", fl_pid, | 2569 | seq_printf(f, "%d %02x:%02x:%ld ", fl_pid, |
2574 | MAJOR(inode->i_sb->s_dev), | 2570 | MAJOR(inode->i_sb->s_dev), |
2575 | MINOR(inode->i_sb->s_dev), inode->i_ino); | 2571 | MINOR(inode->i_sb->s_dev), inode->i_ino); |
2576 | #endif | ||
2577 | } else { | 2572 | } else { |
2578 | seq_printf(f, "%d <none>:0 ", fl_pid); | 2573 | seq_printf(f, "%d <none>:0 ", fl_pid); |
2579 | } | 2574 | } |