lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <3279469d-f980-386f-9110-c44144711608@gmail.com>
Date:   Mon, 27 Sep 2021 11:39:19 +0300
From:   Tariq Toukan <ttoukan.linux@...il.com>
To:     Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
        linux-kernel@...r.kernel.org
Cc:     stable@...r.kernel.org, Patrick.Mclean@...y.com,
        Aya Levin <ayal@...dia.com>, Tariq Toukan <tariqt@...dia.com>,
        Saeed Mahameed <saeedm@...dia.com>,
        Jakub Kicinski <kuba@...nel.org>,
        Sasha Levin <sashal@...nel.org>,
        Leon Romanovsky <leonro@...dia.com>
Subject: Re: [PATCH 5.10 10/63] [PATCH] Revert "net/mlx5: Register to devlink
 ingress VLAN filter trap"



On 9/24/2021 3:44 PM, Greg Kroah-Hartman wrote:
> From: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
> 
> This reverts commit fe6322774ca28669868a7e231e173e09f7422118 which was
> commit 82e6c96f04e13c72d91777455836ffd012853caa upstream.
> 
> It has been reported to cause regressions so should be dropped.
> 
> Reported-by: <Patrick.Mclean@...y.com>
> Link: https://lore.kernel.org/r/BY5PR13MB3604D3031E984CA34A57B7C9EEA09@BY5PR13MB3604.namprd13.prod.outlook.com
> Cc: Aya Levin <ayal@...dia.com>
> Cc: Tariq Toukan <tariqt@...dia.com>
> Cc: Tariq Toukan <tariqt@...dia.com>
> Cc: Saeed Mahameed <saeedm@...dia.com>
> Cc: Jakub Kicinski <kuba@...nel.org>
> Cc: Sasha Levin <sashal@...nel.org>
> Cc: Leon Romanovsky <leonro@...dia.com>
> Signed-off-by: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
> ---

Hi Greg,

This issue is solved within the same upstream series, by upstream patch:
[1] 241dc159391f net/mlx5: Notify on trap action by blocking event

We didn't spot the issue back then, the two patches should've been 
submitted in a reversed order in the original series to avoid this 
temporary degradation.

This patch "net/mlx5: Register to devlink ingress VLAN filter trap" is 
not a bug fix, not really needed in 5.10 stable.
I believe you cherry-picked it into 5.10 to handle some code context 
problem?

In summary, if the revert works for you w/o further degradation then we 
are fine with it. The alternative is to import the whole original 
series, especially the patch mentioned above [1].

Thanks,
Tariq

>   drivers/net/ethernet/mellanox/mlx5/core/devlink.c |   51 ----------------------
>   1 file changed, 51 deletions(-)
> 
> --- a/drivers/net/ethernet/mellanox/mlx5/core/devlink.c
> +++ b/drivers/net/ethernet/mellanox/mlx5/core/devlink.c
> @@ -376,48 +376,6 @@ static void mlx5_devlink_set_params_init
>   #endif
>   }
>   
> -#define MLX5_TRAP_DROP(_id, _group_id)					\
> -	DEVLINK_TRAP_GENERIC(DROP, DROP, _id,				\
> -			     DEVLINK_TRAP_GROUP_GENERIC_ID_##_group_id, \
> -			     DEVLINK_TRAP_METADATA_TYPE_F_IN_PORT)
> -
> -static const struct devlink_trap mlx5_traps_arr[] = {
> -	MLX5_TRAP_DROP(INGRESS_VLAN_FILTER, L2_DROPS),
> -};
> -
> -static const struct devlink_trap_group mlx5_trap_groups_arr[] = {
> -	DEVLINK_TRAP_GROUP_GENERIC(L2_DROPS, 0),
> -};
> -
> -static int mlx5_devlink_traps_register(struct devlink *devlink)
> -{
> -	struct mlx5_core_dev *core_dev = devlink_priv(devlink);
> -	int err;
> -
> -	err = devlink_trap_groups_register(devlink, mlx5_trap_groups_arr,
> -					   ARRAY_SIZE(mlx5_trap_groups_arr));
> -	if (err)
> -		return err;
> -
> -	err = devlink_traps_register(devlink, mlx5_traps_arr, ARRAY_SIZE(mlx5_traps_arr),
> -				     &core_dev->priv);
> -	if (err)
> -		goto err_trap_group;
> -	return 0;
> -
> -err_trap_group:
> -	devlink_trap_groups_unregister(devlink, mlx5_trap_groups_arr,
> -				       ARRAY_SIZE(mlx5_trap_groups_arr));
> -	return err;
> -}
> -
> -static void mlx5_devlink_traps_unregister(struct devlink *devlink)
> -{
> -	devlink_traps_unregister(devlink, mlx5_traps_arr, ARRAY_SIZE(mlx5_traps_arr));
> -	devlink_trap_groups_unregister(devlink, mlx5_trap_groups_arr,
> -				       ARRAY_SIZE(mlx5_trap_groups_arr));
> -}
> -
>   int mlx5_devlink_register(struct devlink *devlink, struct device *dev)
>   {
>   	int err;
> @@ -432,16 +390,8 @@ int mlx5_devlink_register(struct devlink
>   		goto params_reg_err;
>   	mlx5_devlink_set_params_init_values(devlink);
>   	devlink_params_publish(devlink);
> -
> -	err = mlx5_devlink_traps_register(devlink);
> -	if (err)
> -		goto traps_reg_err;
> -
>   	return 0;
>   
> -traps_reg_err:
> -	devlink_params_unregister(devlink, mlx5_devlink_params,
> -				  ARRAY_SIZE(mlx5_devlink_params));
>   params_reg_err:
>   	devlink_unregister(devlink);
>   	return err;
> @@ -449,7 +399,6 @@ params_reg_err:
>   
>   void mlx5_devlink_unregister(struct devlink *devlink)
>   {
> -	mlx5_devlink_traps_unregister(devlink);
>   	devlink_params_unpublish(devlink);
>   	devlink_params_unregister(devlink, mlx5_devlink_params,
>   				  ARRAY_SIZE(mlx5_devlink_params));
> 
> 

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ