From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Neil Armstrong <narmstrong@baylibre.com>,
Liviu Dudau <liviu.dudau@arm.com>, Marek Vasut <marex@denx.de>,
Boris BREZILLON <boris.brezillon@free-electrons.com>,
Alexey Brodkin <abrodkin@synopsys.com>,
Xinliang Liu <z.liuxinliang@hisilicon.com>,
Xinwei Kong <kong.kongxinwei@hisilicon.com>,
Tomi Valkeinen <tomi.valkeinen@ti.com>,
Feng Chen <puck.chen@hisilicon.com>, Jyri Sarha <jsarha@ti.com>,
dri-devel <dri-devel@lists.freedesktop.org>,
Vincent Abriou <vincent.abriou@st.com>,
Huan Wang <alison.wang@freescale.com>,
Philippe Cornu <philippe.cornu@st.com>,
Yannick Fertre <yannick.fertre@st.com>,
Rongrong Zou <zourongrong@gmail.com>,
Maxime Ripard <maxime.ripard@free-electrons.com>,
Shawn Guo <shawnguo@kernel.org>
Subject: Re: [PATCH v3 01/22] drm: Add GEM backed framebuffer library
Date: Thu, 17 Aug 2017 00:11:37 +0300 [thread overview]
Message-ID: <1779242.6RzvmGrZIA@avalon> (raw)
In-Reply-To: <CAKMK7uHCGs_5xXU4MHTa1DZyWAtmhpk1pKZ_cE-rzfyGBOHveA@mail.gmail.com>
Hi Daniel,
On Wednesday 16 Aug 2017 23:06:30 Daniel Vetter wrote:
> On Wed, Aug 16, 2017 at 11:03 PM, Noralf Trønnes <noralf@tronnes.org> wrote:
> > Den 16.08.2017 22.39, skrev Laurent Pinchart:
> >> On Wednesday 16 Aug 2017 21:52:02 Noralf Trønnes wrote:
> >>> Den 16.08.2017 19.24, skrev Eric Anholt:
> >>>> Noralf Trønnes <noralf@tronnes.org> writes:
> >>>>> This library provides helpers for drivers that don't subclass
> >>>>> drm_framebuffer and are backed by drm_gem_object. The code is
> >>>>> taken from drm_fb_cma_helper.
> >>>>>
> >>>>> Signed-off-by: Noralf Trønnes <noralf@tronnes.org>
> >>>>> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
> >>>>> ---
> >>>>> +/**
> >>>>> + * drm_gem_fb_destroy - Free GEM backed framebuffer
> >>>>> + * @fb: DRM framebuffer
> >>>>> + *
> >>>>> + * Frees a GEM backed framebuffer with it's backing buffer(s) and the
> >>>>> structure
> >>>>
> >>>> grammar nit: "its"
> >>>>
> >>>> Other than that,
> >>>>
> >>>> Reviewed-by: Eric Anholt <eric@anholt.net>
> >>>
> >>> Thanks, applied to drm-misc.
> >>
> >> The patches were posted on Sunday. If you don't give at least a week to
> >> reviewers, I don't think they will keep bothering. I certainly won't.
> >
> > Hi Laurent,
> >
> > I actually didn't think there was much interest in this patchset since
> > the first version of the patcheset was sent 31/7. Daniel gave me his rb
> > if I fixed the docs a week ago. Instead of applying it directly I sent
> > a new version to give Eric a chance to look at it since he showed
> > interest in an rfc. So when I got his rb, I just applied.
> >
> > All that being said, I do appreciate reviews since that improves the work.
> > I will adapt to waiting a week if that's what's expected.
> >
> > Sorry about the let down.
>
> I think a follow up patch to address the review would be good.
>
> On the "how long to wait for review" question we just discussed this a
> bit on irc, and I kinda would have merged it probably too.
I think we've had a similar discussion before (but possibly in private, I'm
not sure), and I believe that one week is a reasonable delay. That being said
I understand what happened here, and I too get impatient to merge patches when
I believe they're almost ready and just need one final ack.
> Perhaps pinged Laurent on irc since he's written/reviewed a bunch of cma
> patches. Aside: Being on irc would be good, makes it quicker to
> discuss stuff like this if you're around.
Please, let's not expect developers to be available to discuss patches on IRC
in the middle of the night ;-)
--
Regards,
Laurent Pinchart
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2017-08-16 21:11 UTC|newest]
Thread overview: 62+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-13 13:31 [PATCH v3 00/22] drm: Add GEM backed framebuffer library Noralf Trønnes
2017-08-13 13:31 ` [PATCH v3 01/22] " Noralf Trønnes
2017-08-16 17:24 ` Eric Anholt
2017-08-16 19:52 ` Noralf Trønnes
2017-08-16 20:39 ` Laurent Pinchart
2017-08-16 21:03 ` Noralf Trønnes
2017-08-16 21:06 ` Daniel Vetter
2017-08-16 21:11 ` Laurent Pinchart [this message]
2017-08-16 21:13 ` Daniel Vetter
2017-08-16 21:31 ` Noralf Trønnes
2017-08-16 21:35 ` Laurent Pinchart
2017-08-16 21:08 ` Laurent Pinchart
2017-08-16 21:24 ` Noralf Trønnes
2017-08-16 21:33 ` Laurent Pinchart
2017-08-16 22:48 ` Eric Anholt
2017-08-16 20:37 ` Laurent Pinchart
2017-08-16 20:50 ` Laurent Pinchart
2017-08-19 14:46 ` Noralf Trønnes
2017-08-21 16:24 ` Daniel Vetter
2017-08-13 13:31 ` [PATCH v3 02/22] drm/fb-cma-helper: Use drm_gem_framebuffer_helper Noralf Trønnes
2017-08-16 17:33 ` Eric Anholt
2017-08-16 19:53 ` Noralf Trønnes
2017-08-13 13:31 ` [PATCH v3 03/22] drm/tinydrm: " Noralf Trønnes
2017-08-13 13:31 ` [PATCH v3 04/22] drm/arc: Use drm_gem_fb_create() Noralf Trønnes
2017-08-28 11:36 ` Alexey Brodkin
2017-09-02 12:43 ` Noralf Trønnes
2017-08-13 13:31 ` [PATCH v3 05/22] drm/arm/hdlcd: " Noralf Trønnes
2017-08-13 13:31 ` [PATCH v3 06/22] drm/arm/mali: " Noralf Trønnes
2017-08-25 10:48 ` Liviu Dudau
2017-08-27 17:33 ` Noralf Trønnes
2017-08-13 13:31 ` [PATCH v3 07/22] drm/atmel-hlcdc: " Noralf Trønnes
2017-08-17 7:25 ` Boris Brezillon
2017-08-27 17:33 ` Noralf Trønnes
2017-08-13 13:31 ` [PATCH v3 08/22] drm/fsl-dcu: " Noralf Trønnes
2017-08-13 13:31 ` [PATCH v3 09/22] drm/hisilicon/kirin: " Noralf Trønnes
2017-08-13 13:31 ` [PATCH v3 10/22] drm/imx: Use drm_gem_fb_create() and drm_gem_fb_prepare_fb() Noralf Trønnes
2017-09-11 7:57 ` Philipp Zabel
2017-09-16 12:13 ` Noralf Trønnes
2017-08-13 13:31 ` [PATCH v3 11/22] drm/meson: Use drm_gem_fb_create() Noralf Trønnes
2017-08-13 13:31 ` [PATCH v3 12/22] drm/mxsfb: Use drm_gem_fb_create() and drm_gem_fb_prepare_fb() Noralf Trønnes
2017-08-13 13:31 ` [PATCH v3 13/22] drm/pl111: " Noralf Trønnes
2017-08-16 17:28 ` Eric Anholt
2017-08-13 13:31 ` [PATCH v3 14/22] drm/rcar-du: Use drm_gem_fb_create() Noralf Trønnes
2017-08-13 13:31 ` [PATCH v3 15/22] drm/shmobile: " Noralf Trønnes
2017-08-13 13:31 ` [PATCH v3 16/22] drm/sti: " Noralf Trønnes
2017-08-21 7:53 ` Vincent ABRIOU
2017-08-27 17:34 ` Noralf Trønnes
2017-08-13 13:32 ` [PATCH v3 17/22] drm/stm: " Noralf Trønnes
2017-09-01 11:28 ` Philippe CORNU
2017-09-02 12:45 ` Noralf Trønnes
2017-09-04 7:17 ` Daniel Vetter
2017-08-13 13:32 ` [PATCH v3 18/22] drm/sun4i: " Noralf Trønnes
2017-08-13 13:32 ` [PATCH v3 19/22] drm/tilcdc: " Noralf Trønnes
2017-09-04 7:59 ` Jyri Sarha
2017-09-09 16:02 ` Noralf Trønnes
2017-08-13 13:32 ` [PATCH v3 20/22] drm/vc4: " Noralf Trønnes
2017-08-16 17:27 ` Eric Anholt
2017-08-13 13:32 ` [PATCH v3 21/22] drm/zte: " Noralf Trønnes
2017-08-17 13:12 ` Shawn Guo
2017-08-27 17:34 ` Noralf Trønnes
2017-08-13 13:32 ` [PATCH v3 22/22] drm/fb-cma-helper: Remove unused functions Noralf Trønnes
2017-08-16 17:31 ` Eric Anholt
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=1779242.6RzvmGrZIA@avalon \
--to=laurent.pinchart@ideasonboard.com \
--cc=abrodkin@synopsys.com \
--cc=alison.wang@freescale.com \
--cc=boris.brezillon@free-electrons.com \
--cc=daniel.vetter@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=jsarha@ti.com \
--cc=kong.kongxinwei@hisilicon.com \
--cc=liviu.dudau@arm.com \
--cc=marex@denx.de \
--cc=maxime.ripard@free-electrons.com \
--cc=narmstrong@baylibre.com \
--cc=philippe.cornu@st.com \
--cc=puck.chen@hisilicon.com \
--cc=shawnguo@kernel.org \
--cc=tomi.valkeinen@ti.com \
--cc=vincent.abriou@st.com \
--cc=yannick.fertre@st.com \
--cc=z.liuxinliang@hisilicon.com \
--cc=zourongrong@gmail.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox