diff options
Diffstat (limited to 'fs/btrfs/print-tree.c')
-rw-r--r-- | fs/btrfs/print-tree.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/btrfs/print-tree.c b/fs/btrfs/print-tree.c index 1141ca5fae6a..9cb50577d982 100644 --- a/fs/btrfs/print-tree.c +++ b/fs/btrfs/print-tree.c | |||
@@ -153,11 +153,11 @@ static void print_eb_refs_lock(struct extent_buffer *eb) | |||
153 | #ifdef CONFIG_BTRFS_DEBUG | 153 | #ifdef CONFIG_BTRFS_DEBUG |
154 | btrfs_info(eb->fs_info, | 154 | btrfs_info(eb->fs_info, |
155 | "refs %u lock (w:%d r:%d bw:%d br:%d sw:%d sr:%d) lock_owner %u current %u", | 155 | "refs %u lock (w:%d r:%d bw:%d br:%d sw:%d sr:%d) lock_owner %u current %u", |
156 | atomic_read(&eb->refs), atomic_read(&eb->write_locks), | 156 | atomic_read(&eb->refs), eb->write_locks, |
157 | atomic_read(&eb->read_locks), | 157 | atomic_read(&eb->read_locks), |
158 | atomic_read(&eb->blocking_writers), | 158 | eb->blocking_writers, |
159 | atomic_read(&eb->blocking_readers), | 159 | atomic_read(&eb->blocking_readers), |
160 | atomic_read(&eb->spinning_writers), | 160 | eb->spinning_writers, |
161 | atomic_read(&eb->spinning_readers), | 161 | atomic_read(&eb->spinning_readers), |
162 | eb->lock_owner, current->pid); | 162 | eb->lock_owner, current->pid); |
163 | #endif | 163 | #endif |