Re: [PATCH net 1/4] net: hns3: fix concurrent setting vlan filter issue
From: Simon Horman <horms@kernel.org>
Date: 2025-07-04 15:52:22
Also in:
lkml
From: Simon Horman <horms@kernel.org>
Date: 2025-07-04 15:52:22
Also in:
lkml
On Wed, Jul 02, 2025 at 09:08:58PM +0800, Jijie Shao wrote:
From: Jian Shen <shenjian15@huawei.com>
The vport->req_vlan_fltr_en may be changed concurrently by function
hclge_sync_vlan_fltr_state() called in periodic work task and
function hclge_enable_vport_vlan_filter() called by user configuration.
It may cause the user configuration inoperative. Fixes it by protect
the vport->req_vlan_fltr by vport_lock.
Fixes: fa6a262a2550 ("net: hns3: add support for VF modify VLAN filter state")
I think the commit sited above is for the VF driver, whereas this
patch addresses PF driver code. I think the following is the
correct tag:
Fixes: 2ba306627f59 ("net: hns3: add support for modify VLAN filter state")
Signed-off-by: Jian Shen <shenjian15@huawei.com> Signed-off-by: Jijie Shao <shaojijie@huawei.com>
Otherwise, this looks good to me. Reviewed-by: Simon Horman <horms@kernel.org>