Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d936622c authored by Michel Dänzer's avatar Michel Dänzer Committed by Dave Airlie
Browse files

drm/radeon: Only warn if the intra-domain offset actually exceeds the limit.

parent 88f50c80
Loading
Loading
Loading
Loading
+11 −1
Original line number Diff line number Diff line
@@ -233,7 +233,17 @@ int radeon_bo_pin_restricted(struct radeon_bo *bo, u32 domain, u64 max_offset,
		bo->pin_count++;
		if (gpu_addr)
			*gpu_addr = radeon_bo_gpu_offset(bo);
		WARN_ON_ONCE(max_offset != 0);

		if (max_offset != 0) {
			u64 domain_start;

			if (domain == RADEON_GEM_DOMAIN_VRAM)
				domain_start = bo->rdev->mc.vram_start;
			else
				domain_start = bo->rdev->mc.gtt_start;
			WARN_ON_ONCE((*gpu_addr - domain_start) > max_offset);
		}

		return 0;
	}
	radeon_ttm_placement_from_domain(bo, domain);