[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <64523bd3-d208-4989-b8d9-57952c77954c@moroto.mountain>
Date: Fri, 15 Mar 2024 09:24:02 +0300
From: Dan Carpenter <dan.carpenter@...aro.org>
To: Peng Fan <peng.fan@....com>
Cc: "Peng Fan (OSS)" <peng.fan@....nxp.com>,
Sudeep Holla <sudeep.holla@....com>,
Cristian Marussi <cristian.marussi@....com>,
Rob Herring <robh+dt@...nel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@...aro.org>,
Conor Dooley <conor+dt@...nel.org>,
Oleksii Moisieiev <oleksii_moisieiev@...m.com>,
Linus Walleij <linus.walleij@...aro.org>,
Shawn Guo <shawnguo@...nel.org>,
Sascha Hauer <s.hauer@...gutronix.de>,
Pengutronix Kernel Team <kernel@...gutronix.de>,
Fabio Estevam <festevam@...il.com>,
dl-linux-imx <linux-imx@....com>,
"linux-arm-kernel@...ts.infradead.org" <linux-arm-kernel@...ts.infradead.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"devicetree@...r.kernel.org" <devicetree@...r.kernel.org>,
"linux-gpio@...r.kernel.org" <linux-gpio@...r.kernel.org>
Subject: Re: [PATCH v5 4/4] pinctrl: Implementation of the generic
scmi-pinctrl driver
On Fri, Mar 15, 2024 at 12:44:34AM +0000, Peng Fan wrote:
> > Subject: Re: [PATCH v5 4/4] pinctrl: Implementation of the generic scmi-
> > pinctrl driver
> >
> > On Thu, Mar 14, 2024 at 09:35:21PM +0800, Peng Fan (OSS) wrote:
> > > +static int pinctrl_scmi_get_function_groups(struct pinctrl_dev *pctldev,
> > > + unsigned int selector,
> > > + const char * const **groups,
> > > + unsigned int * const num_groups)
> > {
> > > + const unsigned int *group_ids;
> > > + int ret, i;
> > > + struct scmi_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
> > > +
> > > + if (!groups || !num_groups)
> > > + return -EINVAL;
> > > +
> > > + if (selector < pmx->nr_functions &&
> > > + pmx->functions[selector].num_groups) {
> >
> > If pmx->functions[selector].num_groups is set then we assume that
> > functions[selector].groups has been allocated.
> >
> > > + *groups = (const char * const *)pmx-
> > >functions[selector].groups;
> > > + *num_groups = pmx->functions[selector].num_groups;
> > > + return 0;
> > > + }
> > > +
> > > + ret = pinctrl_ops->function_groups_get(pmx->ph, selector,
> > > + &pmx-
> > >functions[selector].num_groups,
> > > + &group_ids);
> >
> > However, pmx->functions[selector].num_groups is set here and not cleared
> > on the error paths. Or instead of clearing the .num_groups it would be nice
> > to pass a local variable and only do the
> > pmx->functions[selector].num_groups = local assignment right before the
> > success return.
>
> So you concern is I should clear the pmx->functions[selector].num_groups in
> err path, right?
>
Yes. If functions[selector].groups is invalid (NULL or freed) then the
pmx->functions[selector].num_groups variable must also be zero.
regards,
dan carpenter
Powered by blists - more mailing lists