All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jacek Lawrynowicz <jacek.lawrynowicz@linux.intel.com>
To: Thomas Zimmermann <tzimmermann@suse.de>, dri-devel@lists.freedesktop.org
Cc: oded.gabbay@gmail.com, quic_jhugo@quicinc.com,
	maciej.falkowski@linux.intel.com, Simona Vetter <simona@ffwll.ch>,
	Dave Airlie <airlied@gmail.com>,
	Maxime Ripard <mripard@kernel.org>,
	"maarten.lankhorst@linux.intel.com"
	<maarten.lankhorst@linux.intel.com>
Subject: Re: [PATCH 0/6] accel/ivpu: Changes for 6.15 2025-02-04
Date: Wed, 12 Feb 2025 14:27:06 +0100	[thread overview]
Message-ID: <ef58703e-75c8-4b35-8acc-4bd79abbb150@linux.intel.com> (raw)
In-Reply-To: <c6537153-d03b-4b9b-8fdf-ff437512404e@suse.de>

Hi,

Thanks for your detailed feedback and constructive suggestions. I appreciate this as it is not easy to learn all process details otherwise.

On 2/12/2025 11:20 AM, Thomas Zimmermann wrote:
> Hi,
> 
> here's a complaint about the lack of process and documentation in accel/, and ivpu specifically. I came across this series while preparing the weekly PR for drm-misc-next and found myself unable to extract much useful information to report. This is a problem for a development process that relies on transparency, accountability and collaboration. Other problematic examples are at [1] and [2]. IIRC I had similar issues in previous development cycles.
> 
> I cannot assess the quality of the code itself, but the process and documentation involved does not meet the requirements.
> 
> - 'Changes for <version>' is not an meaningful description for a patch series. It's not the submitter (or anyone else) deciding that this series gets merged into version so-and-so. The series gets merged when it is ready to be merged.
> 
> - Apparently this series contains 3 different things (buffer imports, locking, debugging); so it should be 3 series with each addressing one of these topics.
> 
> - The series' description just restates the patch descriptions briefly. It should rather give some indication of the problem being solved by the contained patches, and context on why this is worth solving. (I know that this is often complicated to state clearly to outsiders.)

We were sometimes using patchsets to bundle patches that were tested together. We apologize for any confusion this may have caused, as we were not aware that this approach was not preferred. Moving forward, we will ensure that patches are split into separate series, each addressing a specific topic. I hope this will help improve clarity and make it easier to understand and assess the changes.

> - Review should be public. I understand that it's often only one dev team working on a specific driver, discussing issues internally. Still it makes sense to do the code reviews in public, so that others can follow what is going on in the driver. Public code reviews are also necessary to establish consent and institutional knowledge within the wider developer community. You miss that with internal reviews.
> 
> - These patches come with R-b tags pre-applied. Even for trivial changes, R-b tags should given in public. If the R-bs have been given elsewhere, please include a reference to that location. The tags (R-b, A-b, T-b, etc) are not just for verifying the code itself. They also establish trust in the development process involving each patch; and in the developers involved in that process. This needs to happen in public to be effective.

We value all public comments and typically wait a week for public reviews before submitting patches, regardless of whether an R-b tag is pre-applied. I was not aware that pre-applying R-b tags was an issue. We we will ensure that all R-b tags are added publicly from now on.

> - The kernel's (or any FOSS') development is organized around individuals, not organizations. Having each developer send their changes individually would likely resolve most of the current problems.
OK, I'll talk to the team about this.

> I understand that accel is not graphics and can feel somewhat detached from the rest of DRM. Yet it is part of the DRM subsystem. This development cycles' ivpu series' made me go to IRC and ask for accel/ to be removed from the drm-misc tree. Luckily the other maintainer were more charitable. So I make these remarks in good faith and hope that we can improve the processes within accel/.

I appreciate your feedback and would welcome more remarks. Please keep in mind that all accel drivers are new, and it takes time to learn all the upstream rules.
The kernel/DRM development process is quite unique, and not everything is fully documented. I find emails like this to be incredibly valuable and I am eager to comply with the guidelines.
I just need some patience and guidance as I navigate through this. Thank you for your understanding and support.

Regards,
Jacek

> Best regards
> Thomas
> 
> [1] https://patchwork.freedesktop.org/series/143182/
> [2] https://patchwork.freedesktop.org/series/144101/
> 
> 
> Am 04.02.25 um 09:46 schrieb Jacek Lawrynowicz:
>> Add possibility to import single buffer into multiple contexts,
>> fix locking when aborting contexts and add some debug features.
>>
>> Andrzej Kacprowski (2):
>>    accel/ivpu: Add missing locks around mmu queues
>>    accel/ivpu: Prevent runtime suspend during context abort work
>>
>> Karol Wachowski (3):
>>    ccel/ivpu: Add debugfs interface for setting HWS priority bands
>>    accel/ivpu: Add test modes to toggle clock relinquish disable
>>    accel/ivpu: Implement D0i2 disable test modea
>>
>> Tomasz Rusinowicz (1):
>>    accel/ivpu: Allow to import single buffer into multiple contexts
>>
>>   drivers/accel/ivpu/ivpu_debugfs.c | 84 +++++++++++++++++++++++++++++++
>>   drivers/accel/ivpu/ivpu_drv.c     |  2 +-
>>   drivers/accel/ivpu/ivpu_drv.h     |  4 ++
>>   drivers/accel/ivpu/ivpu_fw.c      |  4 ++
>>   drivers/accel/ivpu/ivpu_gem.c     | 43 ++++++++++++++++
>>   drivers/accel/ivpu/ivpu_gem.h     |  1 +
>>   drivers/accel/ivpu/ivpu_hw.c      | 31 ++++++++++++
>>   drivers/accel/ivpu/ivpu_hw.h      |  5 ++
>>   drivers/accel/ivpu/ivpu_job.c     | 10 +++-
>>   drivers/accel/ivpu/ivpu_jsm_msg.c | 29 ++++-------
>>   drivers/accel/ivpu/ivpu_mmu.c     |  9 ++++
>>   11 files changed, 202 insertions(+), 20 deletions(-)
>>
>> -- 
>> 2.45.1
> 


  parent reply	other threads:[~2025-02-12 13:27 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-04  8:46 [PATCH 0/6] accel/ivpu: Changes for 6.15 2025-02-04 Jacek Lawrynowicz
2025-02-04  8:46 ` [PATCH 1/6] accel/ivpu: Add missing locks around mmu queues Jacek Lawrynowicz
2025-02-14 16:41   ` Jeffrey Hugo
2025-02-17 15:26     ` Jacek Lawrynowicz
2025-02-18 15:52       ` Jeffrey Hugo
2025-02-04  8:46 ` [PATCH 2/6] accel/ivpu: Prevent runtime suspend during context abort work Jacek Lawrynowicz
2025-02-14 16:49   ` Jeffrey Hugo
2025-02-17 15:33     ` Jacek Lawrynowicz
2025-02-18 15:48       ` Jeffrey Hugo
2025-02-04  8:46 ` [PATCH 3/6] accel/ivpu: Add debugfs interface for setting HWS priority bands Jacek Lawrynowicz
2025-02-14 16:51   ` Jeffrey Hugo
2025-02-04  8:46 ` [PATCH 4/6] accel/ivpu: Allow to import single buffer into multiple contexts Jacek Lawrynowicz
2025-02-14 16:53   ` Jeffrey Hugo
2025-02-04  8:46 ` [PATCH 5/6] accel/ivpu: Add test modes to toggle clock relinquish disable Jacek Lawrynowicz
2025-02-14 16:59   ` Jeffrey Hugo
2025-02-04  8:46 ` [PATCH 6/6] accel/ivpu: Implement D0i2 disable test mode Jacek Lawrynowicz
2025-02-14 17:04   ` Jeffrey Hugo
2025-02-17 15:35     ` Jacek Lawrynowicz
2025-02-10  9:48 ` [PATCH 0/6] accel/ivpu: Changes for 6.15 2025-02-04 Jacek Lawrynowicz
2025-02-12 10:20 ` Thomas Zimmermann
2025-02-12 12:59   ` Maxime Ripard
2025-02-12 13:27   ` Jacek Lawrynowicz [this message]
2025-02-12 15:52     ` Jeffrey Hugo
2025-02-13 14:17       ` Thomas Zimmermann
2025-02-14 15:47         ` Jeffrey Hugo
2025-02-17 16:53           ` Simona Vetter
2025-02-13 14:06     ` Thomas Zimmermann

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=ef58703e-75c8-4b35-8acc-4bd79abbb150@linux.intel.com \
    --to=jacek.lawrynowicz@linux.intel.com \
    --cc=airlied@gmail.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=maciej.falkowski@linux.intel.com \
    --cc=mripard@kernel.org \
    --cc=oded.gabbay@gmail.com \
    --cc=quic_jhugo@quicinc.com \
    --cc=simona@ffwll.ch \
    --cc=tzimmermann@suse.de \
    /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.