Re: [Intel-wired-lan] [PATCH net-next] ice: Fix a couple NULL vs IS_ERR() bugs

2024-09-15 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (main) by Jakub Kicinski : On Sat, 14 Sep 2024 12:57:28 +0300 you wrote: > The ice_repr_create() function returns error pointers. It never returns > NULL. Fix the callers to check for IS_ERR(). > > Fixes: 977514fb0fa8 ("ice: create port repr

Re: [Intel-wired-lan] [PATCH net-next] ice: Fix a couple NULL vs IS_ERR() bugs

2024-09-14 Thread Simon Horman
On Sat, Sep 14, 2024 at 12:57:28PM +0300, Dan Carpenter wrote: > The ice_repr_create() function returns error pointers. It never returns > NULL. Fix the callers to check for IS_ERR(). > > Fixes: 977514fb0fa8 ("ice: create port representor for SF") > Fixes: 415db8399d06 ("ice: make representor co

[Intel-wired-lan] [PATCH net-next] ice: Fix a couple NULL vs IS_ERR() bugs

2024-09-14 Thread Dan Carpenter
The ice_repr_create() function returns error pointers. It never returns NULL. Fix the callers to check for IS_ERR(). Fixes: 977514fb0fa8 ("ice: create port representor for SF") Fixes: 415db8399d06 ("ice: make representor code generic") Signed-off-by: Dan Carpenter --- drivers/net/ethernet/inte