From: Kangjie Lu Date: Sat, 9 Mar 2019 03:31:23 +0000 (-0600) Subject: net: ixgbevf: fix a missing check of ixgbevf_write_msg_read_ack X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=20d437ee8f4899573e6ea76c06ef0206e98bccb6;p=openwrt%2Fstaging%2Fblogic.git net: ixgbevf: fix a missing check of ixgbevf_write_msg_read_ack If ixgbevf_write_msg_read_ack fails, return its error code upstream Signed-off-by: Kangjie Lu Tested-by: Andrew Bowers Reviewed-by: Mukesh Ojha Signed-off-by: Jeff Kirsher --- diff --git a/drivers/net/ethernet/intel/ixgbevf/vf.c b/drivers/net/ethernet/intel/ixgbevf/vf.c index cd3b81300cc7..d5ce49636548 100644 --- a/drivers/net/ethernet/intel/ixgbevf/vf.c +++ b/drivers/net/ethernet/intel/ixgbevf/vf.c @@ -508,9 +508,8 @@ static s32 ixgbevf_update_mc_addr_list_vf(struct ixgbe_hw *hw, vector_list[i++] = ixgbevf_mta_vector(hw, ha->addr); } - ixgbevf_write_msg_read_ack(hw, msgbuf, msgbuf, IXGBE_VFMAILBOX_SIZE); - - return 0; + return ixgbevf_write_msg_read_ack(hw, msgbuf, msgbuf, + IXGBE_VFMAILBOX_SIZE); } /**