Skip to content

Commit

Permalink
drm/mm/selftests: fix wrong return type casting
Browse files Browse the repository at this point in the history
Function prepare_igt_frag() and get_insert_time() were casting
signed value to unsigned value before returning error.
So error check in igt_frag() would not work with unsigned
return value from get_insert_time() compared against negative
value.

Addresses-Coverity: ("Unsigned compared against 0, no effect")
Signed-off-by: Nirmoy Das <nirmoy.das@amd.com>
Reported-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Christian König <christian.koenig@amd.com>
Link: https://patchwork.freedesktop.org/patch/370636/
  • Loading branch information
Nirmoy Das authored and Christian König committed Jun 23, 2020
1 parent 5fad79f commit c9bb9d6
Showing 1 changed file with 7 additions and 14 deletions.
21 changes: 7 additions & 14 deletions drivers/gpu/drm/selftests/test-drm_mm.c
Original file line number Diff line number Diff line change
Expand Up @@ -1041,13 +1041,12 @@ static int prepare_igt_frag(struct drm_mm *mm,
{
unsigned int size = 4096;
unsigned int i;
u64 ret = -EINVAL;

for (i = 0; i < num_insert; i++) {
if (!expect_insert(mm, &nodes[i], size, 0, i,
mode) != 0) {
pr_err("%s insert failed\n", mode->name);
goto out;
return -EINVAL;
}
}

Expand All @@ -1057,8 +1056,7 @@ static int prepare_igt_frag(struct drm_mm *mm,
drm_mm_remove_node(&nodes[i]);
}

out:
return ret;
return 0;

}

Expand All @@ -1070,21 +1068,16 @@ static u64 get_insert_time(struct drm_mm *mm,
unsigned int size = 8192;
ktime_t start;
unsigned int i;
u64 ret = -EINVAL;

start = ktime_get();
for (i = 0; i < num_insert; i++) {
if (!expect_insert(mm, &nodes[i], size, 0, i, mode) != 0) {
pr_err("%s insert failed\n", mode->name);
goto out;
return 0;
}
}

ret = ktime_to_ns(ktime_sub(ktime_get(), start));

out:
return ret;

return ktime_to_ns(ktime_sub(ktime_get(), start));
}

static int igt_frag(void *ignored)
Expand Down Expand Up @@ -1119,17 +1112,17 @@ static int igt_frag(void *ignored)
continue;

ret = prepare_igt_frag(&mm, nodes, insert_size, mode);
if (!ret)
if (ret)
goto err;

insert_time1 = get_insert_time(&mm, insert_size,
nodes + insert_size, mode);
if (insert_time1 < 0)
if (insert_time1 == 0)
goto err;

insert_time2 = get_insert_time(&mm, (insert_size * 2),
nodes + insert_size * 2, mode);
if (insert_time2 < 0)
if (insert_time2 == 0)
goto err;

pr_info("%s fragmented insert of %u and %u insertions took %llu and %llu nsecs\n",
Expand Down

0 comments on commit c9bb9d6

Please sign in to comment.