v3dv: Initialize time before usage by free_stale_bos.

Fix defect reported by Coverity Scan.

Uninitialized scalar variable (UNINIT)
uninit_use_in_call: Using uninitialized value time.tv_sec when calling free_stale_bos.

Fixes: f78c99f357 ("v3dv/bo: add a maximum size for the bo_cache and a envvar to configure it")
Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: Alejandro Piñeiro <apinheiro@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7154>
This commit is contained in:
Vinson Lee 2020-10-14 16:55:12 -07:00 committed by Marge Bot
parent 8eb246d7f6
commit 7d1fb5fffe

View file

@ -447,6 +447,7 @@ v3dv_bo_free(struct v3dv_device *device,
if (bo->private &&
bo->size > cache->max_cache_size - cache->cache_size) {
clock_gettime(CLOCK_MONOTONIC, &time);
mtx_lock(&cache->lock);
free_stale_bos(device, time.tv_sec);
mtx_unlock(&cache->lock);