Re: [PATCH] drm: virtio: fix eno.cocci warnings

From: Gerd Hoffmann
Date: Tue Mar 14 2017 - 10:07:58 EST


Hi,

> vbuf = kmem_cache_alloc(vgdev->vbufs, GFP_KERNEL);
> - if (IS_ERR(vbuf))
> + if (!vbuf)
> return ERR_CAST(vbuf);

Well, ERR_CAST(vbuf) isn't correct either ...

correct fix has been committed to drm-misc-next today and should show up
in linux-next shortly.

cheers,
Gerd