btrfs-progs: fix typo in set/get of btrfs_inode_item::sequence
authorZhao Lei <zhaolei@cn.fujitsu.com>
Tue, 8 Sep 2015 13:16:49 +0000 (21:16 +0800)
committerDavid Sterba <dsterba@suse.com>
Wed, 9 Sep 2015 15:42:22 +0000 (17:42 +0200)
s/generation/sequence/
for BTRFS_SETGET_STACK_FUNCS(stack_inode_sequence, ...)

Signed-off-by: Zhao Lei <zhaolei@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.com>
ctree.h

diff --git a/ctree.h b/ctree.h
index bcad2b9..2061e1e 100644 (file)
--- a/ctree.h
+++ b/ctree.h
@@ -1423,7 +1423,7 @@ BTRFS_SETGET_FUNCS(inode_flags, struct btrfs_inode_item, flags, 64);
 BTRFS_SETGET_STACK_FUNCS(stack_inode_generation,
                         struct btrfs_inode_item, generation, 64);
 BTRFS_SETGET_STACK_FUNCS(stack_inode_sequence,
-                        struct btrfs_inode_item, generation, 64);
+                        struct btrfs_inode_item, sequence, 64);
 BTRFS_SETGET_STACK_FUNCS(stack_inode_size,
                         struct btrfs_inode_item, size, 64);
 BTRFS_SETGET_STACK_FUNCS(stack_inode_nbytes,