Btrfs: missing endianess conversion in insert_new_root
authorChristoph Hellwig <hch@lst.de>
Fri, 5 Sep 2008 20:43:28 +0000 (16:43 -0400)
committerChris Mason <chris.mason@oracle.com>
Thu, 25 Sep 2008 15:04:07 +0000 (11:04 -0400)
Add two missing endianess conversions in this function, found by sparse.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Chris Mason <chris.mason@oracle.com>
fs/btrfs/ctree.c

index 5791240..6cd4e92 100644 (file)
@@ -1656,8 +1656,8 @@ static int noinline insert_new_root(struct btrfs_trans_handle *trans,
 
        c = btrfs_alloc_free_block(trans, root, root->nodesize,
                                   root->root_key.objectid,
-                                  root_gen, lower_key.objectid, level,
-                                  root->node->start, 0);
+                                  root_gen, le64_to_cpu(lower_key.objectid),
+                                  level, root->node->start, 0);
        if (IS_ERR(c))
                return PTR_ERR(c);
 
@@ -2352,8 +2352,9 @@ again:
 
        right = btrfs_alloc_free_block(trans, root, root->leafsize,
                                         root->root_key.objectid,
-                                        root_gen, disk_key.objectid, 0,
-                                        l->start, 0);
+                                        root_gen,
+                                        le64_to_cpu(disk_key.objectid),
+                                        0, l->start, 0);
        if (IS_ERR(right)) {
                BUG_ON(1);
                return PTR_ERR(right);