diff mbox series

net: thunderx: remove null check after call container_of()

Message ID 1652696212-17516-1-git-send-email-baihaowen@meizu.com (mailing list archive)
State New, archived
Headers show
Series net: thunderx: remove null check after call container_of() | expand

Commit Message

baihaowen May 16, 2022, 10:16 a.m. UTC
container_of() will never return NULL, so remove useless code.

Signed-off-by: Haowen Bai <baihaowen@meizu.com>
---
 drivers/net/ethernet/cavium/thunder/nicvf_main.c | 3 ---
 1 file changed, 3 deletions(-)

Comments

patchwork-bot+netdevbpf@kernel.org May 18, 2022, 12:50 a.m. UTC | #1
Hello:

This patch was applied to netdev/net-next.git (master)
by Jakub Kicinski <kuba@kernel.org>:

On Mon, 16 May 2022 18:16:52 +0800 you wrote:
> container_of() will never return NULL, so remove useless code.
> 
> Signed-off-by: Haowen Bai <baihaowen@meizu.com>
> ---
>  drivers/net/ethernet/cavium/thunder/nicvf_main.c | 3 ---
>  1 file changed, 3 deletions(-)

Here is the summary with links:
  - net: thunderx: remove null check after call container_of()
    https://git.kernel.org/netdev/net-next/c/ab4d6357c95f

You are awesome, thank you!
diff mbox series

Patch

diff --git a/drivers/net/ethernet/cavium/thunder/nicvf_main.c b/drivers/net/ethernet/cavium/thunder/nicvf_main.c
index a04aa206fddc..768ea426d49f 100644
--- a/drivers/net/ethernet/cavium/thunder/nicvf_main.c
+++ b/drivers/net/ethernet/cavium/thunder/nicvf_main.c
@@ -2024,9 +2024,6 @@  static void nicvf_set_rx_mode_task(struct work_struct *work_arg)
 	u8 mode;
 	struct xcast_addr_list *mc;
 
-	if (!vf_work)
-		return;
-
 	/* Save message data locally to prevent them from
 	 * being overwritten by next ndo_set_rx_mode call().
 	 */