mirror of
https://github.com/kdave/btrfs-progs
synced 2025-03-05 02:07:51 +00:00
btrfs-progs: print-tree: fix INODE_ITEM sequence and flags
dump-tree prints wrong sequence number and the flags numbers, as we misplaced the printf args. This patch fixes it. Signed-off-by: Anand Jain <anand.jain@oracle.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
9aa0c422b8
commit
9fe78033cb
@ -919,8 +919,8 @@ static void print_inode_item(struct extent_buffer *eb,
|
||||
btrfs_inode_uid(eb, ii),
|
||||
btrfs_inode_gid(eb, ii),
|
||||
(unsigned long long)btrfs_inode_rdev(eb,ii),
|
||||
(unsigned long long)btrfs_inode_flags(eb,ii),
|
||||
(unsigned long long)btrfs_inode_sequence(eb, ii),
|
||||
(unsigned long long)btrfs_inode_flags(eb,ii),
|
||||
flags_str);
|
||||
print_timespec(eb, btrfs_inode_atime(ii), "\t\tatime ", "\n");
|
||||
print_timespec(eb, btrfs_inode_ctime(ii), "\t\tctime ", "\n");
|
||||
|
Loading…
Reference in New Issue
Block a user