Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8e7d3f68 authored by Sathya Perla's avatar Sathya Perla Committed by David S. Miller
Browse files

be2net: fix multicast filter programming



 Re-posting with subject fixed!

 Multicast programming has been broken since commit 5b8821b7. Setting the
 MULTICAST flag while sending the cmd to the FW was missing. Fixed this.

Also fixed-up some indentation in the adjacent lines.

Signed-off-by: default avatarSathya Perla <sathya.perla@emulex.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4de075e0
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -1588,6 +1588,8 @@ int be_cmd_rx_filter(struct be_adapter *adapter, u32 flags, u32 value)
		struct netdev_hw_addr *ha;
		int i = 0;

		req->if_flags_mask = req->if_flags =
				cpu_to_le32(BE_IF_FLAGS_MULTICAST);
		req->mcast_num = cpu_to_le16(netdev_mc_count(adapter->netdev));
		netdev_for_each_mc_addr(ha, adapter->netdev)
			memcpy(req->mcast_mac[i++].byte, ha->addr, ETH_ALEN);