Re: [PATCH] [RESEND] [media] omap3isp: support 64-bit version of omap3isp_stat_data

From: Arnd Bergmann
Date: Mon May 07 2018 - 20:09:00 EST


On Mon, May 7, 2018 at 5:33 PM, Sakari Ailus <sakari.ailus@xxxxxx> wrote:
> On Mon, May 07, 2018 at 04:36:45PM -0400, Arnd Bergmann wrote:
>> On Mon, May 7, 2018 at 9:19 AM, Sakari Ailus <sakari.ailus@xxxxxx> wrote:
>> > On Mon, May 07, 2018 at 04:17:32PM +0300, Laurent Pinchart wrote:
>> >> On Thursday, 26 April 2018 00:30:10 EEST Arnd Bergmann wrote:
>> >> > +int omap3isp_stat_request_statistics_time32(struct ispstat *stat,
>> >> > + struct omap3isp_stat_data_time32 *data)
>> >> > +{
>> >> > + struct omap3isp_stat_data data64;
>> >> > + int ret;
>> >> > +
>> >> > + ret = omap3isp_stat_request_statistics(stat, &data64);
>> >> > +
>> >> > + data->ts.tv_sec = data64.ts.tv_sec;
>> >> > + data->ts.tv_usec = data64.ts.tv_usec;
>> >> > + memcpy(&data->buf, &data64.buf, sizeof(*data) - sizeof(data->ts));
>> >> > +
>> >> > + return ret;
>> >>
>> >> We could return immediately after omap3isp_stat_request_statistics() if the
>> >> function fails, but that's no big deal, the error path is clearly a cold path.
>>
>> I looked at it again and briefly thought that it would leak kernel stack
>> data in my version and changing it would be required to avoid that,
>> but I do see now that the absence of the INFO_FL_ALWAYS_COPY
>> flag makes it safe after all.
>>
>> I agree that returning early here would be nicer here, I'll leave it up to
>> Sakari to fold in that change if he likes.
>
> I agree with the change; actually the data64 struct will be left untouched
> if there's an error so changing this doesn't seem to make a difference.
> Private IOCTLs have always_copy == false, so the argument struct isn't
> copied back to the kernel.
>
> The diff is here. Let me know if something went wrong...
>
> diff --git a/drivers/media/platform/omap3isp/ispstat.c b/drivers/media/platform/omap3isp/ispstat.c
> index dfee8eaf2226..47353fee26c3 100644
> --- a/drivers/media/platform/omap3isp/ispstat.c
> +++ b/drivers/media/platform/omap3isp/ispstat.c
> @@ -519,12 +519,14 @@ int omap3isp_stat_request_statistics_time32(struct ispstat *stat,
> int ret;
>
> ret = omap3isp_stat_request_statistics(stat, &data64);
> + if (ret)
> + return ret;
>
> data->ts.tv_sec = data64.ts.tv_sec;
> data->ts.tv_usec = data64.ts.tv_usec;
> memcpy(&data->buf, &data64.buf, sizeof(*data) - sizeof(data->ts));
>
> - return ret;
> + return 0;
> }

Yes, that's exactly what I had in mind. Thanks for fixing it up!

Arnd