OSDN Git Service

freedreno: add fd_device_new_dup()
authorRob Clark <robclark@freedesktop.org>
Sun, 12 Jan 2014 13:27:36 +0000 (08:27 -0500)
committerRob Clark <robclark@freedesktop.org>
Sun, 12 Jan 2014 14:00:51 +0000 (09:00 -0500)
There seem to be some cases (I've noticed this switching resolution in
some games, for example) where the fd can get closed() before the device
and all it's bo's are destroyed.  Which, if the drm device is opened
again and bo's are allocated with the same handles, results that when
the first pipe_screen/pipe_context is destroyed causes the first dev to
close handles for bo's allocated by the second device.

The easy solution to that is to add a mode where the fd_device creates
it's own private fd (a dup()).

Signed-off-by: Rob Clark <robclark@freedesktop.org>
freedreno/freedreno_device.c
freedreno/freedreno_drmif.h
freedreno/freedreno_priv.h

index 6486983..23e086b 100644 (file)
@@ -135,6 +135,16 @@ struct fd_device * fd_device_new(int fd)
        return dev;
 }
 
+/* like fd_device_new() but creates it's own private dup() of the fd
+ * which is close()d when the device is finalized.
+ */
+struct fd_device * fd_device_new_dup(int fd)
+{
+       struct fd_device *dev = fd_device_new(dup(fd));
+       dev->closefd = 1;
+       return dev;
+}
+
 struct fd_device * fd_device_ref(struct fd_device *dev)
 {
        atomic_inc(&dev->refcnt);
@@ -147,6 +157,8 @@ static void fd_device_del_impl(struct fd_device *dev)
        drmHashDestroy(dev->handle_table);
        drmHashDestroy(dev->name_table);
        drmHashDelete(dev_table, dev->fd);
+       if (dev->closefd)
+               close(dev->fd);
        dev->funcs->destroy(dev);
 }
 
index 6a40ab8..f3a01af 100644 (file)
@@ -72,6 +72,7 @@ enum fd_param_id {
  */
 
 struct fd_device * fd_device_new(int fd);
+struct fd_device * fd_device_new_dup(int fd);
 struct fd_device * fd_device_ref(struct fd_device *dev);
 void fd_device_del(struct fd_device *dev);
 
index 061d807..d5cf9f9 100644 (file)
@@ -84,6 +84,8 @@ struct fd_device {
        struct fd_bo_bucket cache_bucket[14 * 4];
        int num_buckets;
        time_t time;
+
+       int closefd;        /* call close(fd) upon destruction */
 };
 
 void fd_cleanup_bo_cache(struct fd_device *dev, time_t time);