[PATCH] drm/xe: Check result of drmm_mutex_init()

Ghimiray, Himal Prasad himal.prasad.ghimiray at intel.com
Tue Apr 9 15:37:29 UTC 2024


On 09-04-2024 21:01, Michal Wajdeczko wrote:
> Although it's unlikely that drmm_mutex_init() will fail during
> driver initialization, however we shouldn't ignore this case.
>
> Signed-off-by: Michal Wajdeczko<michal.wajdeczko at intel.com>
> ---
>   drivers/gpu/drm/xe/xe_device.c | 4 +++-
>   1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
> index 9083f5e02dd9..ba3643906d9e 100644
> --- a/drivers/gpu/drm/xe/xe_device.c
> +++ b/drivers/gpu/drm/xe/xe_device.c
> @@ -273,7 +273,9 @@ struct xe_device *xe_device_create(struct pci_dev *pdev,
>   
>   	init_waitqueue_head(&xe->ufence_wq);
>   
> -	drmm_mutex_init(&xe->drm, &xe->usm.lock);
> +	err = drmm_mutex_init(&xe->drm, &xe->usm.lock);
> +	if (err)
> +		goto err;

LGTM.

Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray at intel.com>

>   	xa_init_flags(&xe->usm.asid_to_vm, XA_FLAGS_ALLOC);
>   
>   	if (IS_ENABLED(CONFIG_DRM_XE_DEBUG)) {
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/intel-xe/attachments/20240409/6b6f41f5/attachment-0001.htm>


More information about the Intel-xe mailing list