Merge branch 'etnaviv/fixes' of https://git.pengutronix.de/git/lst/linux into drm-fixes
single etnaviv fix. * 'etnaviv/fixes' of https://git.pengutronix.de/git/lst/linux: drm/etnaviv: Fix off-by-one error in reloc checking
This commit is contained in:
Коммит
52ae28e7e7
|
@ -270,8 +270,8 @@ static int submit_reloc(struct etnaviv_gem_submit *submit, void *stream,
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
if (r->reloc_offset >= bo->obj->base.size - sizeof(*ptr)) {
|
if (r->reloc_offset > bo->obj->base.size - sizeof(*ptr)) {
|
||||||
DRM_ERROR("relocation %u outside object", i);
|
DRM_ERROR("relocation %u outside object\n", i);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче