Revert "libdrm_radeon: Always wait for BO idle in bo_map."

This reverts commit 0a732983f0.

Paul Nieminen and Dave Airlie pointed out on IRC that this shouldn't be
necessary. I was seeing visual corruption in X before I made this change, but
I can't reproduce that anymore so it was probably an unrelated issue.
This commit is contained in:
Michel Dänzer 2009-08-28 11:42:07 +02:00 committed by Michel Dänzer
parent 0a732983f0
commit 19d6fadfa2

View file

@ -152,7 +152,10 @@ static int bo_map(struct radeon_bo *bo, int write)
int r;
void *ptr;
if (bo_gem->map_count++ != 0 || bo_gem->priv_ptr) {
if (bo_gem->map_count++ != 0) {
return 0;
}
if (bo_gem->priv_ptr) {
goto wait;
}