mirror of
https://github.com/torvalds/linux.git
synced 2026-05-24 23:22:31 +02:00
drm/loongson: Add a check for lsdc_bo_create() errors
This code doesn't check for lsdc_bo_create() failure and it could lead
to a crash. It can fail for a variety of reasons, but the most common
cause would be low memory. Add a check.
Fixes: f39db26c54 ("drm: Add kms driver for loongson display controller")
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Reviewed-by: Sui Jingfeng <suijingfeng@loongson.cn>
Signed-off-by: Sui Jingfeng <sui.jingfeng@linux.dev>
Link: https://patchwork.freedesktop.org/patch/msgid/ZLeijglIMPve2Iio@kadam
This commit is contained in:
parent
e4774e9968
commit
b0e9267d4c
|
|
@ -496,6 +496,8 @@ struct lsdc_bo *lsdc_bo_create_kernel_pinned(struct drm_device *ddev,
|
|||
int ret;
|
||||
|
||||
lbo = lsdc_bo_create(ddev, domain, size, true, NULL, NULL);
|
||||
if (IS_ERR(lbo))
|
||||
return ERR_CAST(lbo);
|
||||
|
||||
ret = lsdc_bo_reserve(lbo);
|
||||
if (unlikely(ret)) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user