Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/external/bsd/drm2/drm Sync drm_close_file: call drm_prop...



details:   https://anonhg.NetBSD.org/src/rev/b04a77ac2e1f
branches:  trunk
changeset: 835335:b04a77ac2e1f
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Mon Aug 27 14:15:24 2018 +0000

description:
Sync drm_close_file: call drm_property_release_user_blobs.

diffstat:

 sys/external/bsd/drm2/drm/drm_fops.c |  10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diffs (44 lines):

diff -r c7e1fa3f032a -r b04a77ac2e1f sys/external/bsd/drm2/drm/drm_fops.c
--- a/sys/external/bsd/drm2/drm/drm_fops.c      Mon Aug 27 14:15:12 2018 +0000
+++ b/sys/external/bsd/drm2/drm/drm_fops.c      Mon Aug 27 14:15:24 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: drm_fops.c,v 1.11 2018/08/27 14:15:12 riastradh Exp $  */
+/*     $NetBSD: drm_fops.c,v 1.12 2018/08/27 14:15:24 riastradh Exp $  */
 
 /*-
  * Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: drm_fops.c,v 1.11 2018/08/27 14:15:12 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: drm_fops.c,v 1.12 2018/08/27 14:15:24 riastradh Exp $");
 
 #include <sys/param.h>
 #include <sys/select.h>
@@ -228,8 +228,10 @@
        if (drm_core_check_feature(dev, DRIVER_HAVE_DMA))
                drm_legacy_reclaim_buffers(dev, file);
        drm_events_release(file);
-       if (drm_core_check_feature(dev, DRIVER_MODESET))
+       if (drm_core_check_feature(dev, DRIVER_MODESET)) {
                drm_fb_release(file);
+               drm_property_destroy_user_blobs(dev, file);
+       }
        if (drm_core_check_feature(dev, DRIVER_GEM))
                drm_gem_release(dev, file);
        drm_legacy_ctxbitmap_flush(dev, file);
@@ -237,12 +239,12 @@
 
        if (dev->driver->postclose)
                (*dev->driver->postclose)(dev, file);
+
 #ifndef __NetBSD__             /* XXX drm prime */
        if (drm_core_check_feature(dev, DRIVER_PRIME))
                drm_prime_destroy_file_private(&file->prime);
 #endif
 
-
        seldestroy(&file->event_selq);
        DRM_DESTROY_WAITQUEUE(&file->event_wait);
        linux_mutex_destroy(&file->fbs_lock);



Home | Main Index | Thread Index | Old Index