All of lore.kernel.org
 help / color / mirror / Atom feed
From: Emil Velikov <emil.l.velikov@gmail.com>
To: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: "Rafael J. Wysocki" <rafael@kernel.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Intel Graphics Development <intel-gfx@lists.freedesktop.org>,
	DRI Development <dri-devel@lists.freedesktop.org>,
	Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
	Daniel Vetter <daniel.vetter@intel.com>
Subject: Re: [Intel-gfx] [PATCH 03/52] drm: add managed resources tied to drm_device
Date: Wed, 19 Feb 2020 16:09:46 +0000	[thread overview]
Message-ID: <CACvgo52qxstEeXBgNvrck9zPZUYsOUbjQ9=a_C3x9u74gTA85w@mail.gmail.com> (raw)
In-Reply-To: <CAKMK7uHHMmqZ6FrK3r6J3SXV8FmsJ=+QfeNHRtodZboV5CwQyw@mail.gmail.com>

On Wed, 19 Feb 2020 at 14:23, Daniel Vetter <daniel.vetter@ffwll.ch> wrote:
>
> On Wed, Feb 19, 2020 at 2:33 PM Greg Kroah-Hartman
> <gregkh@linuxfoundation.org> wrote:
> >
> > On Wed, Feb 19, 2020 at 03:28:47PM +0200, Laurent Pinchart wrote:
> > > Hi Daniel,
> > >
> > > Thank you for the patch.
> > >
> > > On Wed, Feb 19, 2020 at 11:20:33AM +0100, Daniel Vetter wrote:
> > > > We have lots of these. And the cleanup code tends to be of dubious
> > > > quality. The biggest wrong pattern is that developers use devm_, which
> > > > ties the release action to the underlying struct device, whereas
> > > > all the userspace visible stuff attached to a drm_device can long
> > > > outlive that one (e.g. after a hotunplug while userspace has open
> > > > files and mmap'ed buffers). Give people what they want, but with more
> > > > correctness.
> > > >
> > > > Mostly copied from devres.c, with types adjusted to fit drm_device and
> > > > a few simplifications - I didn't (yet) copy over everything. Since
> > > > the types don't match code sharing looked like a hopeless endeavour.
> > > >
> > > > For now it's only super simplified, no groups, you can't remove
> > > > actions (but kfree exists, we'll need that soon). Plus all specific to
> > > > drm_device ofc, including the logging. Which I didn't bother to make
> > > > compile-time optional, since none of the other drm logging is compile
> > > > time optional either.
> > > >
> > > > One tricky bit here is the chicken&egg between allocating your
> > > > drm_device structure and initiliazing it with drm_dev_init. For
> > > > perfect onion unwinding we'd need to have the action to kfree the
> > > > allocation registered before drm_dev_init registers any of its own
> > > > release handlers. But drm_dev_init doesn't know where exactly the
> > > > drm_device is emebedded into the overall structure, and by the time it
> > > > returns it'll all be too late. And forcing drivers to be able clean up
> > > > everything except the one kzalloc is silly.
> > > >
> > > > Work around this by having a very special final_kfree pointer. This
> > > > also avoids troubles with the list head possibly disappearing from
> > > > underneath us when we release all resources attached to the
> > > > drm_device.
> > >
> > > This is all a very good idea ! Many subsystems are plagged by drivers
> > > using devm_k*alloc to allocate data accessible by userspace. Since the
> > > introduction of devm_*, we've likely reduced the number of memory leaks,
> > > but I'm pretty sure we've increased the risk of crashes as I've seen
> > > some drivers that used .release() callbacks correctly being naively
> > > converted to incorrect devm_* usage :-(
> > >
> > > This leads me to a question: if other subsystems have the same problem,
> > > could we turn this implementation into something more generic ? It
> > > doesn't have to be done right away and shouldn't block merging this
> > > series, but I think it would be very useful.
> >
> > It shouldn't be that hard to tie this into a drv_m() type of a thing
> > (driver_memory?)
> >
> > And yes, I think it's much better than devm_* for the obvious reasons of
> > this being needed here.
>
> There's two reasons I went with copypasta instead of trying to share code:
> - Type checking, I definitely don't want people to mix up devm_ with
> drmm_. But even if we do a drv_m that subsystems could embed we do
> have quite a few different types of component drivers (and with
> drm_panel and drm_bridge even standardized), and I don't want people
> to be able to pass the wrong kind of struct to e.g. a managed
> drmm_connector_init - it really needs to be the drm_device, not a
> panel or bridge or something else.
>
> - We could still share the code as a kind of implementation/backend
> library. But it's not much, and with embedding I could use the drm
> device logging stuff which is kinda nice. But if there's more demand
> for this I can definitely see the point in sharing this, as Laurent
> pointed out with the tiny optimization with not allocating a NULL void
> * that I've done (and screwed up) it's not entirely trivial code.
>

My 2c as they say, although closer to a brain dump :-)

On one hand the drm_device has an embedded struct device. On the other
drm_device preserves state which outlives the embedded struct device.

Would it make sense to keep drm_device better related to the
underlying device? Effectively moving the $misc state to drm_driver.
This idea does raise another question - struct drm_driver unlike many
other struct $foo_driver, does not embedded device_driver :-(
So if one is to cover the above two, then the embedding concerns will
be elevated.

WRT type safety, with the embedded work sorted, one could introduce
trivial helpers for drmm_connector_init and friends.

In another email you've also raised the question of API diversity and
reviews, I believe. IMHO one could start with a bare minimum set and
extend as needed.
Based on the prompt response from Greg, I suspect review won't be an issue.

If people agree with my analysis and considering the size/complexity
of drm_device <> drm_driver reshuffle, we could add a TODO task.
I suspect the underlying work will be larger than the current 52 patch
set, so doing it in one go will be PITA.

HTH
Emil

* Based on the following quick greps
$git grep -W "struct [a-zA-Z0-9-]*_driver {" -- include/ | grep -w
"struct device_driver\>.*;"  | wc -l
56
$git cgrep "struct [a-zA-Z0-9-]*_driver {" -- include/ | wc -l
71
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

WARNING: multiple messages have this Message-ID (diff)
From: Emil Velikov <emil.l.velikov@gmail.com>
To: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: "Rafael J. Wysocki" <rafael@kernel.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Intel Graphics Development <intel-gfx@lists.freedesktop.org>,
	DRI Development <dri-devel@lists.freedesktop.org>,
	Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
	Daniel Vetter <daniel.vetter@intel.com>
Subject: Re: [Intel-gfx] [PATCH 03/52] drm: add managed resources tied to drm_device
Date: Wed, 19 Feb 2020 16:09:46 +0000	[thread overview]
Message-ID: <CACvgo52qxstEeXBgNvrck9zPZUYsOUbjQ9=a_C3x9u74gTA85w@mail.gmail.com> (raw)
In-Reply-To: <CAKMK7uHHMmqZ6FrK3r6J3SXV8FmsJ=+QfeNHRtodZboV5CwQyw@mail.gmail.com>

On Wed, 19 Feb 2020 at 14:23, Daniel Vetter <daniel.vetter@ffwll.ch> wrote:
>
> On Wed, Feb 19, 2020 at 2:33 PM Greg Kroah-Hartman
> <gregkh@linuxfoundation.org> wrote:
> >
> > On Wed, Feb 19, 2020 at 03:28:47PM +0200, Laurent Pinchart wrote:
> > > Hi Daniel,
> > >
> > > Thank you for the patch.
> > >
> > > On Wed, Feb 19, 2020 at 11:20:33AM +0100, Daniel Vetter wrote:
> > > > We have lots of these. And the cleanup code tends to be of dubious
> > > > quality. The biggest wrong pattern is that developers use devm_, which
> > > > ties the release action to the underlying struct device, whereas
> > > > all the userspace visible stuff attached to a drm_device can long
> > > > outlive that one (e.g. after a hotunplug while userspace has open
> > > > files and mmap'ed buffers). Give people what they want, but with more
> > > > correctness.
> > > >
> > > > Mostly copied from devres.c, with types adjusted to fit drm_device and
> > > > a few simplifications - I didn't (yet) copy over everything. Since
> > > > the types don't match code sharing looked like a hopeless endeavour.
> > > >
> > > > For now it's only super simplified, no groups, you can't remove
> > > > actions (but kfree exists, we'll need that soon). Plus all specific to
> > > > drm_device ofc, including the logging. Which I didn't bother to make
> > > > compile-time optional, since none of the other drm logging is compile
> > > > time optional either.
> > > >
> > > > One tricky bit here is the chicken&egg between allocating your
> > > > drm_device structure and initiliazing it with drm_dev_init. For
> > > > perfect onion unwinding we'd need to have the action to kfree the
> > > > allocation registered before drm_dev_init registers any of its own
> > > > release handlers. But drm_dev_init doesn't know where exactly the
> > > > drm_device is emebedded into the overall structure, and by the time it
> > > > returns it'll all be too late. And forcing drivers to be able clean up
> > > > everything except the one kzalloc is silly.
> > > >
> > > > Work around this by having a very special final_kfree pointer. This
> > > > also avoids troubles with the list head possibly disappearing from
> > > > underneath us when we release all resources attached to the
> > > > drm_device.
> > >
> > > This is all a very good idea ! Many subsystems are plagged by drivers
> > > using devm_k*alloc to allocate data accessible by userspace. Since the
> > > introduction of devm_*, we've likely reduced the number of memory leaks,
> > > but I'm pretty sure we've increased the risk of crashes as I've seen
> > > some drivers that used .release() callbacks correctly being naively
> > > converted to incorrect devm_* usage :-(
> > >
> > > This leads me to a question: if other subsystems have the same problem,
> > > could we turn this implementation into something more generic ? It
> > > doesn't have to be done right away and shouldn't block merging this
> > > series, but I think it would be very useful.
> >
> > It shouldn't be that hard to tie this into a drv_m() type of a thing
> > (driver_memory?)
> >
> > And yes, I think it's much better than devm_* for the obvious reasons of
> > this being needed here.
>
> There's two reasons I went with copypasta instead of trying to share code:
> - Type checking, I definitely don't want people to mix up devm_ with
> drmm_. But even if we do a drv_m that subsystems could embed we do
> have quite a few different types of component drivers (and with
> drm_panel and drm_bridge even standardized), and I don't want people
> to be able to pass the wrong kind of struct to e.g. a managed
> drmm_connector_init - it really needs to be the drm_device, not a
> panel or bridge or something else.
>
> - We could still share the code as a kind of implementation/backend
> library. But it's not much, and with embedding I could use the drm
> device logging stuff which is kinda nice. But if there's more demand
> for this I can definitely see the point in sharing this, as Laurent
> pointed out with the tiny optimization with not allocating a NULL void
> * that I've done (and screwed up) it's not entirely trivial code.
>

My 2c as they say, although closer to a brain dump :-)

On one hand the drm_device has an embedded struct device. On the other
drm_device preserves state which outlives the embedded struct device.

Would it make sense to keep drm_device better related to the
underlying device? Effectively moving the $misc state to drm_driver.
This idea does raise another question - struct drm_driver unlike many
other struct $foo_driver, does not embedded device_driver :-(
So if one is to cover the above two, then the embedding concerns will
be elevated.

WRT type safety, with the embedded work sorted, one could introduce
trivial helpers for drmm_connector_init and friends.

In another email you've also raised the question of API diversity and
reviews, I believe. IMHO one could start with a bare minimum set and
extend as needed.
Based on the prompt response from Greg, I suspect review won't be an issue.

If people agree with my analysis and considering the size/complexity
of drm_device <> drm_driver reshuffle, we could add a TODO task.
I suspect the underlying work will be larger than the current 52 patch
set, so doing it in one go will be PITA.

HTH
Emil

* Based on the following quick greps
$git grep -W "struct [a-zA-Z0-9-]*_driver {" -- include/ | grep -w
"struct device_driver\>.*;"  | wc -l
56
$git cgrep "struct [a-zA-Z0-9-]*_driver {" -- include/ | wc -l
71
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2020-02-19 16:10 UTC|newest]

Thread overview: 310+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-19 10:20 [PATCH 00/52] drm_device managed resources Daniel Vetter
2020-02-19 10:20 ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20 ` [PATCH 01/52] mm/sl[uo]b: export __kmalloc_track(_node)_caller Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20   ` Daniel Vetter
2020-02-19 19:42   ` Andrew Morton
2020-02-19 19:42     ` [Intel-gfx] " Andrew Morton
2020-02-19 19:42     ` Andrew Morton
2020-02-22  3:42   ` Christopher Lameter
2020-02-22  3:42     ` [Intel-gfx] " Christopher Lameter
2020-02-22  3:42     ` Christopher Lameter
2020-02-19 10:20 ` [PATCH 02/52] drm/i915: Don't clear drvdata in ->release Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20 ` [PATCH 03/52] drm: add managed resources tied to drm_device Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 12:31   ` Neil Armstrong
2020-02-19 12:31     ` [Intel-gfx] " Neil Armstrong
2020-02-19 13:24     ` Daniel Vetter
2020-02-19 13:24       ` [Intel-gfx] " Daniel Vetter
2020-02-19 13:28   ` Laurent Pinchart
2020-02-19 13:28     ` [Intel-gfx] " Laurent Pinchart
2020-02-19 13:33     ` Greg Kroah-Hartman
2020-02-19 13:33       ` [Intel-gfx] " Greg Kroah-Hartman
2020-02-19 14:22       ` Daniel Vetter
2020-02-19 14:22         ` [Intel-gfx] " Daniel Vetter
2020-02-19 16:09         ` Emil Velikov [this message]
2020-02-19 16:09           ` Emil Velikov
2020-02-19 16:22           ` Daniel Vetter
2020-02-19 16:22             ` Daniel Vetter
2020-02-19 16:41             ` Emil Velikov
2020-02-19 16:41               ` Emil Velikov
2020-02-19 16:46             ` Laurent Pinchart
2020-02-19 16:46               ` Laurent Pinchart
2020-02-19 16:53               ` Daniel Vetter
2020-02-19 16:53                 ` Daniel Vetter
2020-02-19 17:02                 ` Laurent Pinchart
2020-02-19 17:02                   ` Laurent Pinchart
2020-02-19 17:06                   ` Daniel Vetter
2020-02-19 17:06                     ` Daniel Vetter
2020-02-19 17:00         ` Greg Kroah-Hartman
2020-02-19 17:00           ` [Intel-gfx] " Greg Kroah-Hartman
2020-02-19 17:36           ` Laurent Pinchart
2020-02-19 17:36             ` [Intel-gfx] " Laurent Pinchart
2020-02-19 18:19             ` Greg Kroah-Hartman
2020-02-19 18:19               ` [Intel-gfx] " Greg Kroah-Hartman
2020-02-19 19:57               ` Daniel Vetter
2020-02-19 19:57                 ` [Intel-gfx] " Daniel Vetter
2020-02-20 14:58               ` Laurent Pinchart
2020-02-20 14:58                 ` [Intel-gfx] " Laurent Pinchart
2020-02-19 13:57     ` Daniel Vetter
2020-02-19 13:57       ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20 ` [PATCH 04/52] drm: Set final_kfree in drm_dev_alloc Daniel Vetter
2020-02-19 10:20   ` [Xen-devel] " Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 12:03   ` Oleksandr Andrushchenko
2020-02-19 12:03     ` [Xen-devel] " Oleksandr Andrushchenko
2020-02-19 12:03     ` [Intel-gfx] " Oleksandr Andrushchenko
2020-02-19 13:39   ` Laurent Pinchart
2020-02-19 13:39     ` [Xen-devel] " Laurent Pinchart
2020-02-19 13:39     ` [Intel-gfx] " Laurent Pinchart
2020-02-19 14:41     ` Daniel Vetter
2020-02-19 14:41       ` [Xen-devel] " Daniel Vetter
2020-02-19 14:41       ` [Intel-gfx] " Daniel Vetter
2020-02-21 19:07       ` Daniel Vetter
2020-02-21 19:07         ` [Xen-devel] " Daniel Vetter
2020-02-21 19:07         ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20 ` [PATCH 05/52] drm/mipi_dbi: Use drmm_add_final_kfree in all drivers Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 11:47   ` Thomas Zimmermann
2020-02-19 11:47     ` [Intel-gfx] " Thomas Zimmermann
2020-02-19 12:45     ` Thomas Zimmermann
2020-02-19 12:45       ` [Intel-gfx] " Thomas Zimmermann
2020-02-19 13:23     ` Daniel Vetter
2020-02-19 13:23       ` [Intel-gfx] " Daniel Vetter
2020-02-19 13:29       ` Thomas Zimmermann
2020-02-19 13:29         ` [Intel-gfx] " Thomas Zimmermann
2020-02-19 14:32         ` Daniel Vetter
2020-02-19 14:32           ` [Intel-gfx] " Daniel Vetter
2020-02-20 16:18   ` Noralf Trønnes
2020-02-20 16:18     ` [Intel-gfx] " Noralf Trønnes
2020-02-19 10:20 ` [PATCH 06/52] drm/udl: Use drmm_add_final_kfree Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20 ` [PATCH 07/52] " Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 13:42   ` Laurent Pinchart
2020-02-19 13:42     ` [Intel-gfx] " Laurent Pinchart
2020-02-19 14:43     ` Daniel Vetter
2020-02-19 14:43       ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20 ` [PATCH 08/52] drm/qxl: " Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20   ` Daniel Vetter
2020-02-19 10:20 ` [PATCH 09/52] drm/i915: " Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20 ` [PATCH 10/52] drm/cirrus: " Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20   ` Daniel Vetter
2020-02-24  8:13   ` Gerd Hoffmann
2020-02-24  8:13     ` [Intel-gfx] " Gerd Hoffmann
2020-02-24  8:13     ` Gerd Hoffmann
2020-02-19 10:20 ` [PATCH 11/52] drm/v3d: " Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 18:43   ` Eric Anholt
2020-02-19 18:43     ` [Intel-gfx] " Eric Anholt
2020-02-19 10:20 ` [PATCH 12/52] drm/tidss: " Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20 ` [PATCH 13/52] drm/mcde: " Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 16:12   ` Linus Walleij
2020-02-19 16:12     ` [Intel-gfx] " Linus Walleij
2020-02-19 10:20 ` [PATCH 14/52] drm/vgem: " Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20 ` [PATCH 15/52] drm/vkms: " Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20 ` [PATCH 16/52] drm/repaper: " Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-20 16:18   ` Noralf Trønnes
2020-02-20 16:18     ` [Intel-gfx] " Noralf Trønnes
2020-02-19 10:20 ` [PATCH 17/52] drm/inigenic: " Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20 ` [PATCH 18/52] drm/gm12u320: " Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20 ` [PATCH 19/52] drm/<drivers>: " Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 14:11   ` Laurent Pinchart
2020-02-19 14:11     ` [Intel-gfx] " Laurent Pinchart
2020-02-19 14:30     ` Daniel Vetter
2020-02-19 14:30       ` [Intel-gfx] " Daniel Vetter
2020-02-19 14:39       ` Laurent Pinchart
2020-02-19 14:39         ` [Intel-gfx] " Laurent Pinchart
2020-02-19 15:29         ` Daniel Vetter
2020-02-19 15:29           ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20 ` [PATCH 20/52] drm: Cleanups after drmm_add_final_kfree rollout Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20 ` [PATCH 21/52] drm: Handle dev->unique with drmm_ Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 14:28   ` Laurent Pinchart
2020-02-19 14:28     ` [Intel-gfx] " Laurent Pinchart
2020-02-19 15:24     ` Daniel Vetter
2020-02-19 15:24       ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20 ` [PATCH 22/52] drm: Use drmm_ for drm_dev_init cleanup Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 14:35   ` Laurent Pinchart
2020-02-19 14:35     ` [Intel-gfx] " Laurent Pinchart
2020-02-19 15:27     ` Daniel Vetter
2020-02-19 15:27       ` [Intel-gfx] " Daniel Vetter
2020-02-19 15:37       ` Laurent Pinchart
2020-02-19 15:37         ` [Intel-gfx] " Laurent Pinchart
2020-02-19 15:44         ` Daniel Vetter
2020-02-19 15:44           ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20 ` [PATCH 23/52] drm: manage drm_minor cleanup with drmm_ Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 14:47   ` Laurent Pinchart
2020-02-19 14:47     ` [Intel-gfx] " Laurent Pinchart
2020-02-19 15:34     ` Daniel Vetter
2020-02-19 15:34       ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20 ` [PATCH 24/52] drm: Manage drm_gem_init " Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 14:22   ` Laurent Pinchart
2020-02-19 14:22     ` [Intel-gfx] " Laurent Pinchart
2020-02-19 14:37     ` Daniel Vetter
2020-02-19 14:37       ` [Intel-gfx] " Daniel Vetter
2020-02-19 14:52       ` Laurent Pinchart
2020-02-19 14:52         ` [Intel-gfx] " Laurent Pinchart
2020-02-19 14:56         ` Daniel Vetter
2020-02-19 14:56           ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20 ` [PATCH 25/52] drm: Manage drm_vblank_cleanup " Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20 ` [PATCH 26/52] drm: Garbage collect drm_dev_fini Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20 ` [PATCH 27/52] drm: Manage drm_mode_config_init with drmm_ Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 13:49   ` Laurent Pinchart
2020-02-19 13:49     ` [Intel-gfx] " Laurent Pinchart
2020-02-19 15:47     ` Daniel Vetter
2020-02-19 15:47       ` [Intel-gfx] " Daniel Vetter
2020-02-19 16:07       ` Laurent Pinchart
2020-02-19 16:07         ` [Intel-gfx] " Laurent Pinchart
2020-02-19 16:23         ` Daniel Vetter
2020-02-19 16:23           ` [Intel-gfx] " Daniel Vetter
2020-02-19 17:30           ` Noralf Trønnes
2020-02-19 17:30             ` [Intel-gfx] " Noralf Trønnes
2020-02-19 18:12             ` Daniel Vetter
2020-02-19 18:12               ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20 ` [PATCH 28/52] drm/bochs: Remove leftover drm_atomic_helper_shutdown Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-24  8:14   ` Gerd Hoffmann
2020-02-24  8:14     ` [Intel-gfx] " Gerd Hoffmann
2020-02-19 10:20 ` [PATCH 29/52] drm/bochs: Drop explicit drm_mode_config_cleanup Daniel Vetter
2020-02-19 10:20   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:20   ` Daniel Vetter
2020-02-24  8:15   ` Gerd Hoffmann
2020-02-24  8:15     ` [Intel-gfx] " Gerd Hoffmann
2020-02-24  8:15     ` Gerd Hoffmann
2020-02-19 10:21 ` [PATCH 30/52] drm/cirrus: Drop explicit drm_mode_config_cleanup call Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:21   ` Daniel Vetter
2020-02-24  8:16   ` Gerd Hoffmann
2020-02-24  8:16     ` [Intel-gfx] " Gerd Hoffmann
2020-02-24  8:16     ` Gerd Hoffmann
2020-02-19 10:21 ` [PATCH 31/52] drm/cirrus: Fully embrace devm_ Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:21   ` Daniel Vetter
2020-02-24  8:18   ` Gerd Hoffmann
2020-02-24  8:18     ` [Intel-gfx] " Gerd Hoffmann
2020-02-24  8:18     ` Gerd Hoffmann
2020-02-19 10:21 ` [PATCH 32/52] drm/ingenic: Drop explicit drm_mode_config_cleanup call Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:21 ` [PATCH 33/52] drm/mcde: " Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-19 16:12   ` Linus Walleij
2020-02-19 16:12     ` [Intel-gfx] " Linus Walleij
2020-02-19 10:21 ` [PATCH 34/52] drm/mcde: More devm_drm_dev_init Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-19 16:13   ` Linus Walleij
2020-02-19 16:13     ` [Intel-gfx] " Linus Walleij
2020-02-19 10:21 ` [PATCH 35/52] drm/meson: Drop explicit drm_mode_config_cleanup call Daniel Vetter
2020-02-19 10:21   ` Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:21   ` Daniel Vetter
2020-02-19 10:39   ` Neil Armstrong
2020-02-19 10:39     ` Neil Armstrong
2020-02-19 10:39     ` [Intel-gfx] " Neil Armstrong
2020-02-19 10:39     ` Neil Armstrong
2020-02-19 10:21 ` [PATCH 36/52] drm/pl111: " Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:21 ` [PATCH 37/52] drm/rcar-du: " Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:21   ` Daniel Vetter
2020-02-19 10:30   ` Geert Uytterhoeven
2020-02-19 10:30     ` [Intel-gfx] " Geert Uytterhoeven
2020-02-19 10:30     ` Geert Uytterhoeven
2020-02-19 10:56     ` Daniel Vetter
2020-02-19 10:56       ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:56       ` Daniel Vetter
2020-02-19 11:10       ` Geert Uytterhoeven
2020-02-19 11:10         ` [Intel-gfx] " Geert Uytterhoeven
2020-02-19 11:10         ` Geert Uytterhoeven
2020-02-19 12:17         ` Laurent Pinchart
2020-02-19 12:17           ` [Intel-gfx] " Laurent Pinchart
2020-02-19 12:17           ` Laurent Pinchart
2020-02-19 12:40           ` Daniel Vetter
2020-02-19 12:40             ` [Intel-gfx] " Daniel Vetter
2020-02-19 12:40             ` Daniel Vetter
2020-02-19 13:53   ` Laurent Pinchart
2020-02-19 13:53     ` [Intel-gfx] " Laurent Pinchart
2020-02-19 13:53     ` Laurent Pinchart
2020-02-19 14:29     ` Daniel Vetter
2020-02-19 14:29       ` [Intel-gfx] " Daniel Vetter
2020-02-19 14:29       ` Daniel Vetter
     [not found] ` <20200219102122.1607365-1-daniel.vetter-/w4YWyX8dFk@public.gmane.org>
2020-02-19 10:21   ` [PATCH 38/52] drm/rockchip: " Daniel Vetter
2020-02-19 10:21     ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:21     ` Daniel Vetter
2020-02-19 10:21     ` Daniel Vetter
2020-02-19 10:21 ` [PATCH 39/52] drm/stm: " Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:21   ` Daniel Vetter
2020-02-20 14:18   ` Philippe CORNU
2020-02-20 14:18     ` [Intel-gfx] " Philippe CORNU
2020-02-20 14:18     ` Philippe CORNU
2020-02-20 16:12     ` Daniel Vetter
2020-02-20 16:12       ` [Intel-gfx] " Daniel Vetter
2020-02-20 16:12       ` Daniel Vetter
2020-02-19 10:21 ` [PATCH 40/52] drm/shmob: " Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:21   ` Daniel Vetter
2020-02-19 13:57   ` Laurent Pinchart
2020-02-19 13:57     ` [Intel-gfx] " Laurent Pinchart
2020-02-19 13:57     ` Laurent Pinchart
2020-02-19 10:21 ` [PATCH 41/52] drm/mtk: " Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:21 ` [PATCH 42/52] drm/tidss: " Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:21 ` [PATCH 43/52] drm/gm12u320: More drmm_ Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:21 ` [PATCH 44/52] drm/gm12u320: Use devm_drm_dev_init Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:21 ` [PATCH 45/52] drm/gm12u320: Use helpers for shutdown/suspend/resume Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:21 ` [PATCH 46/52] drm/gm12u320: Simplify upload work Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:21 ` [PATCH 47/52] drm/repaper: Drop explicit drm_mode_config_cleanup call Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-20 16:21   ` Noralf Trønnes
2020-02-20 16:21     ` [Intel-gfx] " Noralf Trønnes
2020-02-19 10:21 ` [PATCH 48/52] drm/mipi-dbi: Move drm_mode_config_init into mipi library Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-20 16:22   ` Noralf Trønnes
2020-02-20 16:22     ` [Intel-gfx] " Noralf Trønnes
2020-02-19 10:21 ` [PATCH 49/52] drm/mipi-dbi: Drop explicit drm_mode_config_cleanup call Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-20 16:22   ` Noralf Trønnes
2020-02-20 16:22     ` [Intel-gfx] " Noralf Trønnes
2020-02-19 10:21 ` [PATCH 50/52] drm/udl: " Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:21 ` [PATCH 51/52] drm/udl: drop drm_driver.release hook Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-19 10:21 ` [PATCH 52/52] drm: Add docs for managed resources Daniel Vetter
2020-02-19 10:21   ` [Intel-gfx] " Daniel Vetter
2020-02-19 15:08   ` Laurent Pinchart
2020-02-19 15:08     ` [Intel-gfx] " Laurent Pinchart
2020-02-19 15:40     ` Daniel Vetter
2020-02-19 15:40       ` [Intel-gfx] " Daniel Vetter
2020-02-21 20:23   ` Sam Ravnborg
2020-02-21 20:23     ` [Intel-gfx] " Sam Ravnborg
2020-02-21 21:13     ` Sam Ravnborg
2020-02-21 21:13       ` [Intel-gfx] " Sam Ravnborg
2020-02-19 11:30 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm_device " Patchwork
2020-02-19 11:32 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2020-02-19 11:54 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2020-02-21  1:37 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CACvgo52qxstEeXBgNvrck9zPZUYsOUbjQ9=a_C3x9u74gTA85w@mail.gmail.com' \
    --to=emil.l.velikov@gmail.com \
    --cc=daniel.vetter@ffwll.ch \
    --cc=daniel.vetter@intel.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=rafael@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.