mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-11 01:46:14 +00:00
test/gen3_mixed_blits: Acutally use fences for BLT
Gah, in my excitement of reproducing the failure reported by gem_stress, I missed using fenced relocs for the BLT. Fortunately, it doesn't affect the presence of the error. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
parent
aadfcdfd4e
commit
853d729598
@ -393,7 +393,7 @@ static void blt_copy(int fd, uint32_t dst, uint32_t src)
|
||||
obj[0].relocs_ptr = 0;
|
||||
obj[0].alignment = 0;
|
||||
obj[0].offset = 0;
|
||||
obj[0].flags = 0;
|
||||
obj[0].flags = EXEC_OBJECT_NEEDS_FENCE;
|
||||
obj[0].rsvd1 = 0;
|
||||
obj[0].rsvd2 = 0;
|
||||
|
||||
@ -402,7 +402,7 @@ static void blt_copy(int fd, uint32_t dst, uint32_t src)
|
||||
obj[1].relocs_ptr = 0;
|
||||
obj[1].alignment = 0;
|
||||
obj[1].offset = 0;
|
||||
obj[1].flags = 0;
|
||||
obj[1].flags = EXEC_OBJECT_NEEDS_FENCE;
|
||||
obj[1].rsvd1 = 0;
|
||||
obj[1].rsvd2 = 0;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user