lkml.org 
[lkml]   [2021]   [Sep]   [15]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
SubjectRe: [PATCH v2 3/3] firmware: xilinx: Add sysfs support for feature config
On Wed, Sep 15, 2021 at 06:16:16AM +0000, Ronak Jain wrote:
> Hi Greg KH,
>
> Thanks for reviewing.
>
> > -----Original Message-----
> > From: Greg KH <gregkh@linuxfoundation.org>
> > Sent: Tuesday, September 14, 2021 2:51 PM
> > To: Ronak Jain <ronakj@xilinx.com>
> > Cc: Michal Simek <michals@xilinx.com>; linux-kernel@vger.kernel.org; Rajan
> > Vaja <RAJANV@xilinx.com>; corbet@lwn.net; linux-arm-
> > kernel@lists.infradead.org; arnd@arndb.de; Sai Krishna Potthuri
> > <lakshmis@xilinx.com>
> > Subject: Re: [PATCH v2 3/3] firmware: xilinx: Add sysfs support for feature
> > config
> >
> > On Mon, Sep 13, 2021 at 01:39:55AM -0700, Ronak Jain wrote:
> > > Add support for sysfs interface for runtime features configuration.
> > > The user can configure the features at runtime. First the user need
> > > to select the config id of the supported features and then the user
> > > can configure the parameters of the feature based on the config id.
> > > So far the support is added for the over temperature and external
> > > watchdog features.
> > >
> > > Signed-off-by: Ronak Jain <ronak.jain@xilinx.com>
> > > ---
> > > Changes in v2:
> > > - Update commit message
> > > ---
> > > drivers/firmware/xilinx/zynqmp.c | 71
> > > ++++++++++++++++++++++++++++++++
> > > 1 file changed, 71 insertions(+)
> > >
> > > diff --git a/drivers/firmware/xilinx/zynqmp.c
> > > b/drivers/firmware/xilinx/zynqmp.c
> > > index 875d13bc1a57..a1434dd368f2 100644
> > > --- a/drivers/firmware/xilinx/zynqmp.c
> > > +++ b/drivers/firmware/xilinx/zynqmp.c
> > > @@ -1361,6 +1361,75 @@ static DEVICE_ATTR_RW(pggs1); static
> > > DEVICE_ATTR_RW(pggs2); static DEVICE_ATTR_RW(pggs3);
> > >
> > > +static atomic_t feature_conf_id;
> >
> > Why does this have to be an atomic?
> Use atomic to avoid race conditions. Suppose the case where the user
> is trying to write the variable and at the same time it tries to read,
> so there might be chances of occurrence of race condition. Also, I am
> not so sure whether the race condition will occur or not but just to
> prevent race condition I have used atomic variable so, the read/write
> operations can handle automatically.

Reading/writing a single variable like this will not be a problem with
races. If you care about stuff like this, just use a lock to protect
it, don't try to mess with an atomic if you do not have to have it.

> > And shouldn't this be per-device, not global to all devices in the system?
> This is to store the config-id set by the user which will be used to
> retrieve config. There is only one firmware device so we can consider
> it systemwide. Please let me know if you think of a better way of
> handling it.

So is it a device attribute or a driver attribute?

And you never know how many devices you have in a system, do not assume
you will not have multiple ones. Use the proper structures to start
with and you never will have to change things in the future if you have
multiple devices.

thanks,

greg k-h
\
 
 \ /
  Last update: 2021-09-15 08:30    [W:0.046 / U:0.080 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site