be2net: supress printing error when mac query fails for VF
When a virtual function driver in initialized, the network mac query command can fail. Skip display of error message in that case. Signed-off-by: Ajit Khaparde <ajitk@serverengines.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e1d187353f
commit
8943807c21
@ -76,7 +76,8 @@ static int be_mcc_compl_process(struct be_adapter *adapter,
|
||||
sizeof(resp->hw_stats));
|
||||
netdev_stats_update(adapter);
|
||||
}
|
||||
} else if (compl_status != MCC_STATUS_NOT_SUPPORTED) {
|
||||
} else if ((compl_status != MCC_STATUS_NOT_SUPPORTED) &&
|
||||
(compl->tag0 != OPCODE_COMMON_NTWK_MAC_QUERY)) {
|
||||
extd_status = (compl->status >> CQE_STATUS_EXTD_SHIFT) &
|
||||
CQE_STATUS_EXTD_MASK;
|
||||
dev_warn(&adapter->pdev->dev,
|
||||
|
Loading…
x
Reference in New Issue
Block a user