public inbox for drm-ai-reviews@public-inbox.freedesktop.org
 help / color / mirror / Atom feed
From: ashutosh desai <ashutoshdesai993@gmail.com>
To: Jani Nikula <jani.nikula@linux.intel.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
	Maxime Ripard <mripard@kernel.org>,
	Thomas Zimmermann <tzimmermann@suse.de>,
	David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>,
	dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] drm/gem: Fix inconsistent plane dimension calculation in drm_gem_fb_init_with_funcs()
Date: Fri, 10 Apr 2026 15:06:33 -0700	[thread overview]
Message-ID: <CAKapqN=__RuyH5=0tXfMA7egWBAE_ye2es6NMJ-gL+fq45qr4Q@mail.gmail.com> (raw)
In-Reply-To: <a4f659636fbf9558252197ec3b89ee0dab8290c7@intel.com>

[-- Attachment #1: Type: text/plain, Size: 3650 bytes --]

Hi Jani,

Thank you for your question. It is a valid one. I have used AI to a small
extent to help me understand the subsystem because it was something new for
me. I haven't used AI to identify any bugs or create patches. This type of
bug is something that I am always on the lookout for (size checking and
boundary checks). So, these became evident during my review. Since AI
wasn’t used for code generation, I didn’t think attribution was required,
but please let me know if you’d prefer otherwise.

Would be happy to walk through any of the patches if it is helpful.

Best regards,
Ashutosh

On Fri, Apr 10, 2026 at 1:26 AM Jani Nikula <jani.nikula@linux.intel.com>
wrote:

> On Thu, 09 Apr 2026, Ashutosh Desai <ashutoshdesai993@gmail.com> wrote:
> > drm_gem_fb_init_with_funcs() computes sub-sampled plane dimensions
> > using plain integer division:
> >
> >   unsigned int width  = mode_cmd->width  / (i ? info->hsub : 1);
> >   unsigned int height = mode_cmd->height / (i ? info->vsub : 1);
> >
> > However, the ioctl-level framebuffer_check() in drm_framebuffer.c uses
> > drm_format_info_plane_width/height() which round up dimensions via
> > DIV_ROUND_UP(). This inconsistency corrupts the subsequent GEM object
> > size check for certain pixel format and dimension combinations.
> >
> > For example, with NV12 (vsub=2) and a 1-pixel-tall framebuffer the
> > GEM size validation path sees height=0 instead of height=1. The
> > expression (height - 1) then wraps to UINT_MAX as an unsigned int,
> > causing min_size to overflow and wrap back to a small value. A tiny
> > GEM object therefore passes the size guard, yet when the GPU accesses
> > the chroma plane it will read or write memory beyond the object's
> > bounds.
> >
> > Fix by replacing the open-coded divisions with
> drm_format_info_plane_width()
> > and drm_format_info_plane_height(), which use DIV_ROUND_UP() and match
> > the calculation already used in framebuffer_check().
> >
> > Signed-off-by: Ashutosh Desai <ashutoshdesai993@gmail.com>
>
> Hello Ashutosh -
>
> Receiving a handful of highly polished patches in quick succession on
> various parts of the drm subsystem from someone who has no commits in
> the kernel and has no previous interactions on the mailing lists is
> virtually unheard of.
>
> I have to ask, did you use AI coding assistants? Please read the kernel
> documentation on AI coding assistants and attribution [1].
>
>
> BR,
> Jani.
>
>
> [1] https://docs.kernel.org/process/coding-assistants.html
>
>
> > ---
> >  drivers/gpu/drm/drm_gem_framebuffer_helper.c | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/drm_gem_framebuffer_helper.c
> b/drivers/gpu/drm/drm_gem_framebuffer_helper.c
> > index 9166c353f..88808e972 100644
> > --- a/drivers/gpu/drm/drm_gem_framebuffer_helper.c
> > +++ b/drivers/gpu/drm/drm_gem_framebuffer_helper.c
> > @@ -172,8 +172,8 @@ int drm_gem_fb_init_with_funcs(struct drm_device
> *dev,
> >       }
> >
> >       for (i = 0; i < info->num_planes; i++) {
> > -             unsigned int width = mode_cmd->width / (i ? info->hsub :
> 1);
> > -             unsigned int height = mode_cmd->height / (i ? info->vsub :
> 1);
> > +             unsigned int width = drm_format_info_plane_width(info,
> mode_cmd->width, i);
> > +             unsigned int height = drm_format_info_plane_height(info,
> mode_cmd->height, i);
> >               unsigned int min_size;
> >
> >               objs[i] = drm_gem_object_lookup(file,
> mode_cmd->handles[i]);
>
> --
> Jani Nikula, Intel
>

[-- Attachment #2: Type: text/html, Size: 4584 bytes --]

  reply	other threads:[~2026-04-11 12:29 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-09 16:41 [PATCH] drm/gem: Fix inconsistent plane dimension calculation in drm_gem_fb_init_with_funcs() Ashutosh Desai
2026-04-10  8:26 ` Jani Nikula
2026-04-10 22:06   ` ashutosh desai [this message]
2026-04-10 22:10 ` Ashutosh Desai
2026-04-12  0:54 ` Claude review: " Claude Code Review Bot
2026-04-12  0:54 ` Claude Code Review Bot

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='CAKapqN=__RuyH5=0tXfMA7egWBAE_ye2es6NMJ-gL+fq45qr4Q@mail.gmail.com' \
    --to=ashutoshdesai993@gmail.com \
    --cc=airlied@gmail.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=jani.nikula@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=mripard@kernel.org \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox