Hello Andrew, and thanks for the review On Sat, 27 Aug 2022 21:28:21 +0200 Andrew Lunn <andrew@xxxxxxx> wrote: > > +static void ipqess_get_strings(struct net_device *netdev, u32 > > stringset, > > + u8 *data) > > +{ > > + u8 *p = data; > > + u32 i; > > + > > + switch (stringset) { > > + case ETH_SS_STATS: > > + for (i = 0; i < ARRAY_SIZE(ipqess_stats); i++) { > > + memcpy(p, ipqess_stats[i].string, > > + min((size_t)ETH_GSTRING_LEN, > > + strlen(ipqess_stats[i].string) > > + 1)); > > That looks pretty similar to strlcpy(). Indeed... and after digging I even found ethtool_sprintf() which seems to fit even better :) > > +static int ipqess_get_settings(struct net_device *netdev, > > + struct ethtool_link_ksettings *cmd) > > > > It would be traditional to have the k in the name. > > > +{ > > + struct ipqess *ess = netdev_priv(netdev); > > + > > + return phylink_ethtool_ksettings_get(ess->phylink, cmd); > > +} > > + > > +static int ipqess_set_settings(struct net_device *netdev, > > + const struct ethtool_link_ksettings > > *cmd) +{ > > Here too. Agreed, I'll address that. Thanks ! Maxime > Andrew