libperf-y += setup.o libperf-y += helpline.o libperf-y += progress.o libperf-y += util.o libperf-y += hist.o libperf-y += stdio/hist.o CFLAGS_setup.o += -DLIBDIR="BUILD_STR($(LIBDIR))" libperf-$(CONFIG_SLANG) += browser.o libperf-$(CONFIG_SLANG) += browsers/ libperf-$(CONFIG_SLANG) += tui/ CFLAGS_browser.o += -DENABLE_SLFUTURE_CONST l'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Vecera <cera@cera.cz>2017-01-06 21:59:30 +0100
committerDavid S. Miller <davem@davemloft.net>2017-01-07 21:25:10 -0500
commit6052cd1af86f9833b6b0b60d5d4787c4a06d65ea (patch)
treed55983a658a481aefdc55f32512b14031155d492
parent1d0f110a2c6c4bca3dbcc4b0e27f1e3dc2d44a2c (diff)
be2net: fix unicast list filling
The adapter->pmac_id[0] item is used for primary MAC address but this is not true for adapter->uc_list[0] as is assumed in be_set_uc_list(). There are N UC addresses copied first from net_device to adapter->uc_list[1..N] and then N UC addresses from adapter->uc_list[0..N-1] are sent to HW. So the last UC address is never stored into HW and address 00:00:00:00;00:00 (from uc_list[0]) is used instead. Cc: Sathya Perla <sathya.perla@broadcom.com> Cc: Ajit Khaparde <ajit.khaparde@broadcom.com> Cc: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com> Cc: Somnath Kotur <somnath.kotur@broadcom.com> Fixes: b717241 be2net: replace polling with sleeping in the FW completion path Signed-off-by: Ivan Vecera <cera@cera.cz> Signed-off-by: David S. Miller <davem@davemloft.net>