|
@@ -3973,6 +3973,22 @@ static int validate_eth_header_mac(int slave, struct _rule_hw *eth_header,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+static void handle_eth_header_mcast_prio(struct mlx4_net_trans_rule_hw_ctrl *ctrl,
|
|
|
+ struct _rule_hw *eth_header)
|
|
|
+{
|
|
|
+ if (is_multicast_ether_addr(eth_header->eth.dst_mac) ||
|
|
|
+ is_broadcast_ether_addr(eth_header->eth.dst_mac)) {
|
|
|
+ struct mlx4_net_trans_rule_hw_eth *eth =
|
|
|
+ (struct mlx4_net_trans_rule_hw_eth *)eth_header;
|
|
|
+ struct _rule_hw *next_rule = (struct _rule_hw *)(eth + 1);
|
|
|
+ bool last_rule = next_rule->size == 0 && next_rule->id == 0 &&
|
|
|
+ next_rule->rsvd == 0;
|
|
|
+
|
|
|
+ if (last_rule)
|
|
|
+ ctrl->prio = cpu_to_be16(MLX4_DOMAIN_NIC);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
/*
|
|
|
* In case of missing eth header, append eth header with a MAC address
|
|
|
* assigned to the VF.
|
|
@@ -4125,6 +4141,12 @@ int mlx4_QP_FLOW_STEERING_ATTACH_wrapper(struct mlx4_dev *dev, int slave,
|
|
|
rule_header = (struct _rule_hw *)(ctrl + 1);
|
|
|
header_id = map_hw_to_sw_id(be16_to_cpu(rule_header->id));
|
|
|
|
|
|
+ if (header_id == MLX4_NET_TRANS_RULE_ID_ETH)
|
|
|
+ handle_eth_header_mcast_prio(ctrl, rule_header);
|
|
|
+
|
|
|
+ if (slave == dev->caps.function)
|
|
|
+ goto execute;
|
|
|
+
|
|
|
switch (header_id) {
|
|
|
case MLX4_NET_TRANS_RULE_ID_ETH:
|
|
|
if (validate_eth_header_mac(slave, rule_header, rlist)) {
|
|
@@ -4151,6 +4173,7 @@ int mlx4_QP_FLOW_STEERING_ATTACH_wrapper(struct mlx4_dev *dev, int slave,
|
|
|
goto err_put;
|
|
|
}
|
|
|
|
|
|
+execute:
|
|
|
err = mlx4_cmd_imm(dev, inbox->dma, &vhcr->out_param,
|
|
|
vhcr->in_modifier, 0,
|
|
|
MLX4_QP_FLOW_STEERING_ATTACH, MLX4_CMD_TIME_CLASS_A,
|