omap: Initialize DMA BUF file descriptor to -1
authorThierry Reding <treding@nvidia.com>
Wed, 26 Aug 2015 08:05:48 +0000 (10:05 +0200)
committerThierry Reding <treding@nvidia.com>
Wed, 26 Aug 2015 13:15:54 +0000 (15:15 +0200)
Commit c86dabfc9f04 ("omap: zero is a valid fd number, treat it as
such") corrected checks for valid file descriptors, but the OMAP buffer
object code initializes the DMA-BUF file descriptor to 0 (as a result of
calloc()'ing the structure). Obviously this isn't going to work because
subsequent code will try to use file descriptor 0 (most likely stdin at
that point) as a DMA-BUF. It may also try and close stdin when a buffer
object is destroyed.

Fix this by initializing the DMA-BUF file descriptor to -1, properly
marking it as an invalid file descriptor.

Fixes: c86dabfc9f04 ("omap: zero is a valid fd number, treat it as such")
Reported-by: Robert Nelson <robertcnelson@gmail.com>
Tested-by: Robert Nelson <robertcnelson@gmail.com>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
omap/omap_drm.c

index 4a0248d..08ba64e 100644 (file)
@@ -186,6 +186,7 @@ static struct omap_bo * bo_from_handle(struct omap_device *dev,
        }
        bo->dev = omap_device_ref(dev);
        bo->handle = handle;
+       bo->fd = -1;
        atomic_set(&bo->refcnt, 1);
        /* add ourselves to the handle table: */
        drmHashInsert(dev->handle_table, handle, bo);