|
@@ -2089,7 +2089,7 @@ int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
|
|
|
ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
|
|
|
num_bytes, parent, root_objectid,
|
|
|
owner, offset, 0,
|
|
|
- BTRFS_ADD_DELAYED_REF, NULL);
|
|
|
+ BTRFS_ADD_DELAYED_REF);
|
|
|
}
|
|
|
return ret;
|
|
|
}
|
|
@@ -7244,7 +7244,7 @@ int btrfs_free_extent(struct btrfs_trans_handle *trans,
|
|
|
num_bytes,
|
|
|
parent, root_objectid, owner,
|
|
|
offset, 0,
|
|
|
- BTRFS_DROP_DELAYED_REF, NULL);
|
|
|
+ BTRFS_DROP_DELAYED_REF);
|
|
|
}
|
|
|
return ret;
|
|
|
}
|
|
@@ -8194,8 +8194,7 @@ int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
|
|
|
ret = btrfs_add_delayed_data_ref(fs_info, trans, ins->objectid,
|
|
|
ins->offset, 0,
|
|
|
root_objectid, owner, offset,
|
|
|
- ram_bytes, BTRFS_ADD_DELAYED_EXTENT,
|
|
|
- NULL);
|
|
|
+ ram_bytes, BTRFS_ADD_DELAYED_EXTENT);
|
|
|
return ret;
|
|
|
}
|
|
|
|