[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <9c21cd7f-a797-0cbf-162b-d1902bee1b8e@intel.com>
Date: Mon, 18 Sep 2023 14:06:15 +0200
From: Przemek Kitszel <przemyslaw.kitszel@...el.com>
To: Pawel Chmielewski <pawel.chmielewski@...el.com>,
<intel-wired-lan@...ts.osuosl.org>
CC: <netdev@...r.kernel.org>, <aelior@...vell.com>, Paul Greenwalt
<paul.greenwalt@...el.com>, <manishc@...vell.com>, <andrew@...n.ch>
Subject: Re: [Intel-wired-lan] [PATCH iwl-next 1/2] ethtool: Add forced speed
to supported link modes maps
On 9/15/23 16:55, Pawel Chmielewski wrote:
> From: Paul Greenwalt <paul.greenwalt@...el.com>
>
> The need to map Ethtool forced speeds to Ethtool supported link modes is
> common among drivers. To support this, add a common structure for forced
> speed maps and a function to init them. This is solution was originally
> introduced in commit 1d4e4ecccb11 ("qede: populate supported link modes
> maps on module init") for qede driver.
>
> ethtool_forced_speed_maps_init() should be called during driver init
> with an array of struct ethtool_forced_speed_map to populate the mapping.
>
> Definitions for maps themselves are left in the driver code, as the sets
> of supported link modes may vary betwen the devices.
>
> The qede driver was compile tested only.
>
> Suggested-by: Andrew Lunn <andrew@...n.ch>
> Signed-off-by: Paul Greenwalt <paul.greenwalt@...el.com>
You have to sign-off too.
This series should be directed TO netdev, with CC IWL; and it would be
best to have at least one Intel RB before posting next version anyway :)
> ---
> .../net/ethernet/qlogic/qede/qede_ethtool.c | 24 ++++---------------
> include/linux/ethtool.h | 20 ++++++++++++++++
> net/ethtool/ioctl.c | 15 ++++++++++++
> 3 files changed, 39 insertions(+), 20 deletions(-)
>
> diff --git a/drivers/net/ethernet/qlogic/qede/qede_ethtool.c b/drivers/net/ethernet/qlogic/qede/qede_ethtool.c
> index 95820cf1cd6c..9e0e73602abe 100644
> --- a/drivers/net/ethernet/qlogic/qede/qede_ethtool.c
> +++ b/drivers/net/ethernet/qlogic/qede/qede_ethtool.c
> @@ -201,14 +201,6 @@ static const char qede_tests_str_arr[QEDE_ETHTOOL_TEST_MAX][ETH_GSTRING_LEN] = {
>
> /* Forced speed capabilities maps */
>
> -struct qede_forced_speed_map {
> - u32 speed;
> - __ETHTOOL_DECLARE_LINK_MODE_MASK(caps);
> -
> - const u32 *cap_arr;
> - u32 arr_size;
> -};
> -
> #define QEDE_FORCED_SPEED_MAP(value) \
> { \
> .speed = SPEED_##value, \
> @@ -263,7 +255,7 @@ static const u32 qede_forced_speed_100000[] __initconst = {
> ETHTOOL_LINK_MODE_100000baseLR4_ER4_Full_BIT,
> };
>
> -static struct qede_forced_speed_map qede_forced_speed_maps[] __ro_after_init = {
> +static struct ethtool_forced_speed_map qede_forced_speed_maps[] __ro_after_init = {
here you go past 80 chars, perhaps not big deal
> QEDE_FORCED_SPEED_MAP(1000),
> QEDE_FORCED_SPEED_MAP(10000),
> QEDE_FORCED_SPEED_MAP(20000),
> @@ -275,16 +267,8 @@ static struct qede_forced_speed_map qede_forced_speed_maps[] __ro_after_init = {
>
> void __init qede_forced_speed_maps_init(void)
> {
> - struct qede_forced_speed_map *map;
> - u32 i;
> -
> - for (i = 0; i < ARRAY_SIZE(qede_forced_speed_maps); i++) {
> - map = qede_forced_speed_maps + i;
> -
> - linkmode_set_bit_array(map->cap_arr, map->arr_size, map->caps);
> - map->cap_arr = NULL;
> - map->arr_size = 0;
> - }
> + ethtool_forced_speed_maps_init(qede_forced_speed_maps,
> + ARRAY_SIZE(qede_forced_speed_maps));
> }
>
> /* Ethtool callbacks */
> @@ -565,7 +549,7 @@ static int qede_set_link_ksettings(struct net_device *dev,
> {
> const struct ethtool_link_settings *base = &cmd->base;
> struct qede_dev *edev = netdev_priv(dev);
> - const struct qede_forced_speed_map *map;
> + const struct ethtool_forced_speed_map *map;
RCT violated
> struct qed_link_output current_link;
> struct qed_link_params params;
> u32 i;
> diff --git a/include/linux/ethtool.h b/include/linux/ethtool.h
> index 62b61527bcc4..3d23a8d78c9b 100644
> --- a/include/linux/ethtool.h
> +++ b/include/linux/ethtool.h
> @@ -1052,4 +1052,24 @@ static inline int ethtool_mm_frag_size_min_to_add(u32 val_min, u32 *val_add,
> * next string.
> */
> extern __printf(2, 3) void ethtool_sprintf(u8 **data, const char *fmt, ...);
> +
> +/* Link mode to forced speed capabilities maps */
> +struct ethtool_forced_speed_map {
> + u32 speed;
> + __ETHTOOL_DECLARE_LINK_MODE_MASK(caps);
> +
> + const u32 *cap_arr;
> + u32 arr_size;
> +};
> +
> +/**
> + * ethtool_forced_speed_maps_init
> + * @maps: Pointer to an array of Ethtool forced speed map
> + * @size: Array size
> + *
> + * Initialize an array of Ethtool forced speed map to Ethtool link modes. This
> + * should be called during driver module init.
> + */
> +void ethtool_forced_speed_maps_init(struct ethtool_forced_speed_map *maps,
> + u32 size);
looks like formatting is off by one space (u32 should be directly under
struct (ofc, in editor, not quoted email reply)).
> #endif /* _LINUX_ETHTOOL_H */
> diff --git a/net/ethtool/ioctl.c b/net/ethtool/ioctl.c
> index 0b0ce4f81c01..1ba437eff764 100644
> --- a/net/ethtool/ioctl.c
> +++ b/net/ethtool/ioctl.c
> @@ -3388,3 +3388,18 @@ void ethtool_rx_flow_rule_destroy(struct ethtool_rx_flow_rule *flow)
> kfree(flow);
> }
> EXPORT_SYMBOL(ethtool_rx_flow_rule_destroy);
> +
> +void ethtool_forced_speed_maps_init(struct ethtool_forced_speed_map *maps,
> + u32 size)
> +{
> + u32 i;
> +
> + for (i = 0; i < size; i++) {
we are in C11 already, so @i declaration could be placed into loop line.
> + struct ethtool_forced_speed_map *map = &maps[i];
> +
> + linkmode_set_bit_array(map->cap_arr, map->arr_size, map->caps);
> + map->cap_arr = NULL;
> + map->arr_size = 0;
> + }
> +}
> +EXPORT_SYMBOL(ethtool_forced_speed_maps_init);
> \ No newline at end of file
:)
Powered by blists - more mailing lists