Re: [PATCH v2 1/4] firmware: xilinx: Add sysfs interface

From: Jolly Shah
Date: Wed Feb 19 2020 - 17:50:53 EST


Hi Greg,

ïOn 2/14/20, 4:58 PM, "linux-kernel-owner@xxxxxxxxxxxxxxx on behalf of 'Greg KH'" <linux-kernel-owner@xxxxxxxxxxxxxxx on behalf of gregkh@xxxxxxxxxxxxxxxxxxx> wrote:

On Fri, Feb 14, 2020 at 04:37:16PM -0800, Jolly Shah wrote:
> > Just make the direct call to the firmware driver, no need to muck around
> > with tables of function pointers. In fact, with the spectre changes,
> > you just made things slower than needed, and you can get back a bunch of
> > throughput by removing that whole middle layer.
> >
>
> arm,scpi is doing the same way and we thought this approach will be more
> acceptable than direct function calls but happy to change as suggested.

Just because one random tiny thing does it the wrong way does not mean
to focus on that design pattern and ignore the thousands of other
apis/interfaces in the kernel that do not do it that way :)

Sure. Will change in next version.

> > So go do that first please, before adding any new stuff.
> >
> > Now for the ioctl, yeah, that's not a "normal" pattern either. But
> > right now you only have 2 "different" ioctls that you call. So why not
> > just turn those 2 into real function calls as well that then makes the
> > "ioctl" call to the hardware? That makes things a lot more obvious on
> > the kernel driver side exactly what is going on.
> >
>
> Sure as i understand firmware driver will provide real function calls to be
> used by user drivers and underneath it will call ioctl for desired
> operation. Please correct if I misunderstood.

You do not misunderstand.

Thanks for confirmation.

Thanks,
Jolly Shah

thanks,

greg k-h