btrfs: split assert into two different asserts when removing block group
[linux-2.6-microblaze.git] / fs / btrfs / block-group.c
index 6e5dc68..fca653c 100644 (file)
@@ -1303,7 +1303,8 @@ struct btrfs_trans_handle *btrfs_start_trans_remove_block_group(
        read_lock(&em_tree->lock);
        em = lookup_extent_mapping(em_tree, chunk_offset, 1);
        read_unlock(&em_tree->lock);
-       ASSERT(em && em->start == chunk_offset);
+       ASSERT(em != NULL);
+       ASSERT(em->start == chunk_offset);
 
        /*
         * We need to reserve 3 + N units from the metadata space info in order