]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
net: aquantia: add an error handling in aq_nic_set_multicast_list
authorChenwandun <chenwandun@huawei.com>
Fri, 18 Oct 2019 10:20:37 +0000 (18:20 +0800)
committerDavid S. Miller <davem@davemloft.net>
Sat, 19 Oct 2019 19:16:38 +0000 (12:16 -0700)
add an error handling in aq_nic_set_multicast_list, it may not
work when hw_multicast_list_set error; and at the same time
it will remove gcc Wunused-but-set-variable warning.

Signed-off-by: Chenwandun <chenwandun@huawei.com>
Reviewed-by: Igor Russkikh <igor.russkikh@aquantia.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/aquantia/atlantic/aq_nic.c

index 2a18439b36fbe5975116d1ae4ddeb6975bf62e5d..137c1de4c6ec04b3b416ad07013b9e0cf2bc4da3 100644 (file)
@@ -664,6 +664,8 @@ int aq_nic_set_multicast_list(struct aq_nic_s *self, struct net_device *ndev)
                err = hw_ops->hw_multicast_list_set(self->aq_hw,
                                                    self->mc_list.ar,
                                                    self->mc_list.count);
+               if (err < 0)
+                       return err;
        }
        return aq_nic_set_packet_filter(self, packet_filter);
 }