Commit e7f0141a authored by Gerd Hoffmann's avatar Gerd Hoffmann
Browse files

drm/ttm: drop ttm_buffer_object->resv

parent 7a4db296
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -1332,11 +1332,9 @@ int ttm_bo_init_reserved(struct ttm_bo_device *bdev,
	bo->acc_size = acc_size;
	bo->sg = sg;
	if (resv) {
		bo->resv = resv;
		bo->base.resv = resv;
		reservation_object_assert_held(bo->base.resv);
	} else {
		bo->resv = &bo->base._resv;
		bo->base.resv = &bo->base._resv;
	}
	if (!ttm_bo_uses_embedded_gem_object(bo)) {
+0 −1
Original line number Diff line number Diff line
@@ -230,7 +230,6 @@ struct ttm_buffer_object {

	struct sg_table *sg;

	struct reservation_object *resv;
	struct mutex wu_mutex;
};