mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Ricardo Ribalda <ribalda@chromium.org>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>,
	linux-media@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] media: uvcvideo: Enforce alignment of frame and interval
Date: Mon, 10 Jun 2024 16:09:10 +0300	[thread overview]
Message-ID: <20240610130910.GA12787@pendragon.ideasonboard.com> (raw)
In-Reply-To: <20240404-uvc-align-v2-1-9e104b0ecfbd@chromium.org>

Hi Ricardo,

Thank you for the patch.

On Thu, Apr 04, 2024 at 05:56:18PM +0000, Ricardo Ribalda wrote:
> Struct uvc_frame and interval (u32*) are packaged together on
> streaming->formats on a single contiguous allocation.
> 
> Right now they allocated right after uvc_format, without taking into

s/they/they are/

> consideration their required alignment.
> 
> This is working fine because both structures have a field with a
> pointer, but it will stop working when the sizeof() of any of those
> structs is not a multiple of the sizeof(void*).
> 
> Enforce that alignment during the allocation.
> 
> Signed-off-by: Ricardo Ribalda <ribalda@chromium.org>
> ---
> This is better than 3 allocations, and do not have any performance
> penalty.
> 
> I have tried this patch printing the size and the address of the
> pointers in the old and the new mode, and it looks the same.
> 
> [    2.235223] drivers/media/usb/uvc/uvc_driver.c:694 uvc_parse_streaming 432
> [    2.235249] drivers/media/usb/uvc/uvc_driver.c:704 uvc_parse_streaming 432
> [    2.235256] drivers/media/usb/uvc/uvc_driver.c:714 uvc_parse_streaming 00000000d32087cc 00000000d3803788
> [    2.235265] drivers/media/usb/uvc/uvc_driver.c:720 uvc_parse_streaming 00000000d32087cc 00000000d3803788
> ---
> Changes in v2: Thanks Laurent.
> - Enforce alignment during allocation instead of using __aligned()
>   macros.
> - Link to v1: https://lore.kernel.org/r/20230501-uvc-align-v1-1-0f713e4b84c3@chromium.org
> ---
>  drivers/media/usb/uvc/uvc_driver.c | 20 +++++++++++++++-----
>  1 file changed, 15 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/media/usb/uvc/uvc_driver.c b/drivers/media/usb/uvc/uvc_driver.c
> index 7aefa76a42b31..7d9844ba3b205 100644
> --- a/drivers/media/usb/uvc/uvc_driver.c
> +++ b/drivers/media/usb/uvc/uvc_driver.c
> @@ -663,16 +663,26 @@ static int uvc_parse_streaming(struct uvc_device *dev,
>  		goto error;
>  	}
>  
> -	size = nformats * sizeof(*format) + nframes * sizeof(*frame)
> -	     + nintervals * sizeof(*interval);
> +	/*
> +	 * Allocate memory for the formats, the frames and the intervals,
> +	 * plus any required padding to guarantee that everything has the
> +	 * correct alignment.
> +	 */
> +	size = nformats * sizeof(*format);
> +	size = ALIGN(size, __alignof__(*frame)) + nframes * sizeof(*frame);
> +	size = ALIGN(size, __alignof__(*interval))
> +	       + nintervals * sizeof(*interval);

You have two extra spaces here. I'll fix when applying.

Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

> +
>  	format = kzalloc(size, GFP_KERNEL);
> -	if (format == NULL) {
> +	if (!format) {
>  		ret = -ENOMEM;
>  		goto error;
>  	}
>  
> -	frame = (struct uvc_frame *)&format[nformats];
> -	interval = (u32 *)&frame[nframes];
> +	frame = (void *)format + nformats * sizeof(*format);
> +	frame = PTR_ALIGN(frame, __alignof__(*frame));
> +	interval = (void *)frame + nframes * sizeof(*frame);
> +	interval = PTR_ALIGN(interval, __alignof__(*interval));
>  
>  	streaming->format = format;
>  	streaming->nformats = nformats;
> 
> ---
> base-commit: 58390c8ce1bddb6c623f62e7ed36383e7fa5c02f
> change-id: 20230501-uvc-align-6ff202b68dab

-- 
Regards,

Laurent Pinchart

      reply	other threads:[~2024-06-10 13:09 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-04 17:56 Ricardo Ribalda
2024-06-10 13:09 ` Laurent Pinchart [this message]

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=20240610130910.GA12787@pendragon.ideasonboard.com \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@kernel.org \
    --cc=ribalda@chromium.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®