From: David Sterba Date: Mon, 5 Mar 2018 14:31:18 +0000 (+0100) Subject: btrfs: embed tree_mod_move structure to tree_mod_elem X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b6dfa35bd56762581bfc60b7eb9b1a4d7d10c289;p=linux.git btrfs: embed tree_mod_move structure to tree_mod_elem The tree_mod_move is not used anywhere and can be embedded as anonymous structure. Signed-off-by: David Sterba --- diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c index 53dfce12e3fb7..6b0192ebf01f7 100644 --- a/fs/btrfs/ctree.c +++ b/fs/btrfs/ctree.c @@ -299,11 +299,6 @@ enum mod_log_op { MOD_LOG_ROOT_REPLACE, }; -struct tree_mod_move { - int dst_slot; - int nr_items; -}; - struct tree_mod_root { u64 logical; u8 level; @@ -326,7 +321,10 @@ struct tree_mod_elem { u64 blockptr; /* this is used for op == MOD_LOG_MOVE_KEYS */ - struct tree_mod_move move; + struct { + int dst_slot; + int nr_items; + } move; /* this is used for op == MOD_LOG_ROOT_REPLACE */ struct tree_mod_root old_root;