mirror of https://gitee.com/openkylin/linux.git
ixgbevf: remove redundant setting of xcast_mode
Removed leftover assignment of xcast_mode. Signed-off-by: Emil Tantilov <emil.s.tantilov@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
63f721c282
commit
1b953e843d
|
@ -1896,10 +1896,6 @@ static void ixgbevf_set_rx_mode(struct net_device *netdev)
|
|||
unsigned int flags = netdev->flags;
|
||||
int xcast_mode;
|
||||
|
||||
xcast_mode = (flags & IFF_ALLMULTI) ? IXGBEVF_XCAST_MODE_ALLMULTI :
|
||||
(flags & (IFF_BROADCAST | IFF_MULTICAST)) ?
|
||||
IXGBEVF_XCAST_MODE_MULTI : IXGBEVF_XCAST_MODE_NONE;
|
||||
|
||||
/* request the most inclusive mode we need */
|
||||
if (flags & IFF_PROMISC)
|
||||
xcast_mode = IXGBEVF_XCAST_MODE_PROMISC;
|
||||
|
|
Loading…
Reference in New Issue