The tree_mod_move is not used anywhere and can be embedded as anonymous
structure.

Signed-off-by: David Sterba <dste...@suse.com>
---
 fs/btrfs/ctree.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c
index 5585433eac40..e53af58697db 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;
-- 
2.16.2

--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to