mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2026-08-22 05:43:02 +00:00
Remove gem_mmap__{cpu,gtt,wc} return value MAP_FAILED asserts
gem_mmap__{cpu,gtt,wc} never return MAP_FAILED, it gets converted to
NULL internally. So don't go asserting that the returned value is
not MAP_FAILED.
Done with coccinelle:
@@
type T;
identifier I;
@@
(
I = gem_mmap__gtt(...);
|
I = gem_mmap__cpu(...);
|
I = gem_mmap__wc(...);
)
...
(
- igt_assert(I != MAP_FAILED);
+ igt_assert(I);
|
- igt_assert(I && I != MAP_FAILED);
+ igt_assert(I);
|
- igt_assert(I != (T *) MAP_FAILED);
+ igt_assert(I);
|
- igt_assert(I != NULL);
+ igt_assert(I);
)
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Stochastically-reviwewed-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
@@ -546,7 +546,7 @@ static int test_invalid_gtt_mapping(int fd)
|
||||
handle = create_bo(fd, 0);
|
||||
ptr = gem_mmap__gtt(fd, handle, sizeof(linear), PROT_READ | PROT_WRITE);
|
||||
gem_close(fd, handle);
|
||||
igt_assert(ptr != NULL);
|
||||
igt_assert(ptr);
|
||||
igt_assert(((unsigned long)ptr & (PAGE_SIZE - 1)) == 0);
|
||||
igt_assert((sizeof(linear) & (PAGE_SIZE - 1)) == 0);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user