Re: [PATCH] net: pcs: rzn1-miic: Fix config array initialization
Andrew Lunn <[email protected]>
| Newsgroups | org.kernel.vger.linux-kernel,org.kernel.vger.linux-renesas-soc,org.kernel.vger.netdev |
|---|---|
| Message-ID | <[email protected]> |
On Fri, Aug 14, 2026 at 10:11:28AM +0200, Geert Uytterhoeven wrote: > CC Prabhakar > > On Thu, 13 Aug 2026 at 20:09, Kyle Hendry via B4 Relay > <[email protected]> wrote: > > From: Kyle Hendry <[email protected]> > > > > Fix memset parameters to initialize the entire DT value array > > > > Signed-off-by: Kyle Hendry <[email protected]> > > Fixes: f39e968dc168a7bd ("net: pcs: rzn1-miic: Move configuration data > to SoC-specific struct") > Reviewed-by: Geert Uytterhoeven <[email protected]> > > > --- a/drivers/net/pcs/pcs-rzn1-miic.c > > +++ b/drivers/net/pcs/pcs-rzn1-miic.c > > @@ -683,7 +683,7 @@ static int miic_parse_dt(struct miic *miic, u32 *mode_cfg) > > if (!dt_val) > > return -ENOMEM; > > > > - memset(dt_val, MIIC_MODCTRL_CONF_NONE, sizeof(*dt_val)); > > + memset(dt_val, MIIC_MODCTRL_CONF_NONE, miic->of_data->conf_conv_count); Sorry for hijacking your reply, i already deleted the original email. This is correct, but could maybe be better. dt_val is allocated with. kmalloc_objs(*dt_val, miic->of_data->conf_conv_count) This allocates objects. It just happens your objects are s8, so size of 1. But the memset() would be "more correct" with: memset(dt_val, MIIC_MODCTRL_CONF_NONE, sizeof(*dt_val) * miic->of_data->conf_conv_count); And i checked, there is no memset_objs(). Andrew