Merge branch 'net-ethernet-Mark-expected-switch-fall-throughs'
Gustavo A. R. Silva says: ==================== net: ethernet: Mark expected switch fall-throughs In preparation to enabling -Wimplicit-fallthrough, this patchset aims to add some annotations in order to mark switch cases where we are expecting to fall through. ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
commit
3517c5b75d
@ -610,6 +610,7 @@ static int axnet_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
|
||||
switch (cmd) {
|
||||
case SIOCGMIIPHY:
|
||||
data->phy_id = info->phy_id;
|
||||
/* Fall through */
|
||||
case SIOCGMIIREG: /* Read MII PHY register. */
|
||||
data->val_out = mdio_read(mii_addr, data->phy_id, data->reg_num & 0x1f);
|
||||
return 0;
|
||||
|
@ -551,6 +551,7 @@ static int acenic_probe_one(struct pci_dev *pdev,
|
||||
ap->name);
|
||||
break;
|
||||
}
|
||||
/* Fall through */
|
||||
case PCI_VENDOR_ID_SGI:
|
||||
printk(KERN_INFO "%s: SGI AceNIC ", ap->name);
|
||||
break;
|
||||
|
@ -1729,8 +1729,8 @@ static int bnxt_async_event_process(struct bnxt *bp,
|
||||
speed);
|
||||
}
|
||||
set_bit(BNXT_LINK_SPEED_CHNG_SP_EVENT, &bp->sp_event);
|
||||
/* fall through */
|
||||
}
|
||||
/* fall through */
|
||||
case ASYNC_EVENT_CMPL_EVENT_ID_LINK_STATUS_CHANGE:
|
||||
set_bit(BNXT_LINK_CHNG_SP_EVENT, &bp->sp_event);
|
||||
break;
|
||||
|
@ -466,6 +466,7 @@ int gem_set_hwtst(struct net_device *dev, struct ifreq *ifr, int cmd)
|
||||
case HWTSTAMP_TX_ONESTEP_SYNC:
|
||||
if (gem_ptp_set_one_step_sync(bp, 1) != 0)
|
||||
return -ERANGE;
|
||||
/* fall through */
|
||||
case HWTSTAMP_TX_ON:
|
||||
tx_bd_control = TSTAMP_ALL_FRAMES;
|
||||
break;
|
||||
|
@ -2209,6 +2209,7 @@ static int liquidio_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
|
||||
case SIOCSHWTSTAMP:
|
||||
if (lio->oct_dev->ptp_enable)
|
||||
return hwtstamp_ioctl(netdev, ifr);
|
||||
/* fall through */
|
||||
default:
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
|
@ -527,6 +527,7 @@ static int nicvf_get_rss_hash_opts(struct nicvf *nic,
|
||||
case SCTP_V4_FLOW:
|
||||
case SCTP_V6_FLOW:
|
||||
info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
|
||||
/* Fall through */
|
||||
case IPV4_FLOW:
|
||||
case IPV6_FLOW:
|
||||
info->data |= RXH_IP_SRC | RXH_IP_DST;
|
||||
|
@ -136,6 +136,7 @@ again:
|
||||
if (e->state == L2T_STATE_STALE)
|
||||
e->state = L2T_STATE_VALID;
|
||||
spin_unlock_bh(&e->lock);
|
||||
/* fall through */
|
||||
case L2T_STATE_VALID: /* fast-path, send the packet on */
|
||||
return cxgb3_ofld_send(dev, skb);
|
||||
case L2T_STATE_RESOLVING:
|
||||
|
@ -231,6 +231,7 @@ again:
|
||||
if (e->state == L2T_STATE_STALE)
|
||||
e->state = L2T_STATE_VALID;
|
||||
spin_unlock_bh(&e->lock);
|
||||
/* fall through */
|
||||
case L2T_STATE_VALID: /* fast-path, send the packet on */
|
||||
return t4_ofld_send(adap, skb);
|
||||
case L2T_STATE_RESOLVING:
|
||||
|
@ -7504,10 +7504,13 @@ int t4_alloc_vi(struct adapter *adap, unsigned int mbox, unsigned int port,
|
||||
switch (nmac) {
|
||||
case 5:
|
||||
memcpy(mac + 24, c.nmac3, sizeof(c.nmac3));
|
||||
/* Fall through */
|
||||
case 4:
|
||||
memcpy(mac + 18, c.nmac2, sizeof(c.nmac2));
|
||||
/* Fall through */
|
||||
case 3:
|
||||
memcpy(mac + 12, c.nmac1, sizeof(c.nmac1));
|
||||
/* Fall through */
|
||||
case 2:
|
||||
memcpy(mac + 6, c.nmac0, sizeof(c.nmac0));
|
||||
}
|
||||
|
@ -3204,6 +3204,8 @@ srom_map_media(struct net_device *dev)
|
||||
case SROM_10BASETF:
|
||||
if (!lp->params.fdx) return -1;
|
||||
lp->fdx = true;
|
||||
/* fall through */
|
||||
|
||||
case SROM_10BASET:
|
||||
if (lp->params.fdx && !lp->fdx) return -1;
|
||||
if ((lp->chipset == DC21140) || ((lp->chipset & ~0x00ff) == DC2114x)) {
|
||||
@ -3224,6 +3226,8 @@ srom_map_media(struct net_device *dev)
|
||||
case SROM_100BASETF:
|
||||
if (!lp->params.fdx) return -1;
|
||||
lp->fdx = true;
|
||||
/* fall through */
|
||||
|
||||
case SROM_100BASET:
|
||||
if (lp->params.fdx && !lp->fdx) return -1;
|
||||
lp->media = _100Mb;
|
||||
@ -3236,6 +3240,8 @@ srom_map_media(struct net_device *dev)
|
||||
case SROM_100BASEFF:
|
||||
if (!lp->params.fdx) return -1;
|
||||
lp->fdx = true;
|
||||
/* fall through */
|
||||
|
||||
case SROM_100BASEF:
|
||||
if (lp->params.fdx && !lp->fdx) return -1;
|
||||
lp->media = _100Mb;
|
||||
|
@ -923,6 +923,7 @@ static int private_ioctl (struct net_device *dev, struct ifreq *rq, int cmd)
|
||||
data->phy_id = 1;
|
||||
else
|
||||
return -ENODEV;
|
||||
/* Fall through */
|
||||
|
||||
case SIOCGMIIREG: /* Read MII PHY register. */
|
||||
if (data->phy_id == 32 && (tp->flags & HAS_NWAY)) {
|
||||
|
@ -575,6 +575,7 @@ static u32 convert_to_et_setting(struct be_adapter *adapter, u32 if_speeds)
|
||||
break;
|
||||
}
|
||||
}
|
||||
/* fall through */
|
||||
case PHY_TYPE_SFP_PLUS_10GB:
|
||||
case PHY_TYPE_XFP_10GB:
|
||||
case PHY_TYPE_SFP_1GB:
|
||||
|
@ -307,6 +307,7 @@ static int __lb_setup(struct net_device *ndev,
|
||||
break;
|
||||
case MAC_LOOP_PHY_NONE:
|
||||
ret = hns_nic_config_phy_loopback(phy_dev, 0x0);
|
||||
/* fall through */
|
||||
case MAC_LOOP_NONE:
|
||||
if (!ret && h->dev->ops->set_loopback) {
|
||||
if (priv->ae_handle->phy_if != PHY_INTERFACE_MODE_XGMII)
|
||||
|
@ -2104,6 +2104,7 @@ static void hns3_rx_checksum(struct hns3_enet_ring *ring, struct sk_buff *skb,
|
||||
case HNS3_OL4_TYPE_MAC_IN_UDP:
|
||||
case HNS3_OL4_TYPE_NVGRE:
|
||||
skb->csum_level = 1;
|
||||
/* fall through */
|
||||
case HNS3_OL4_TYPE_NO_TUN:
|
||||
/* Can checksum ipv4 or ipv6 + UDP/TCP/SCTP packets */
|
||||
if ((l3_type == HNS3_L3_TYPE_IPV4 ||
|
||||
|
@ -1800,6 +1800,7 @@ static void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
|
||||
num_tc_qps);
|
||||
break;
|
||||
}
|
||||
/* fall through */
|
||||
case I40E_VSI_FDIR:
|
||||
case I40E_VSI_SRIOV:
|
||||
case I40E_VSI_VMDQ2:
|
||||
|
@ -2253,9 +2253,10 @@ static struct sk_buff *i40e_run_xdp(struct i40e_ring *rx_ring,
|
||||
break;
|
||||
default:
|
||||
bpf_warn_invalid_xdp_action(act);
|
||||
/* fall through */
|
||||
case XDP_ABORTED:
|
||||
trace_xdp_exception(rx_ring->netdev, xdp_prog, act);
|
||||
/* fallthrough -- handle aborts by dropping packet */
|
||||
/* fall through -- handle aborts by dropping packet */
|
||||
case XDP_DROP:
|
||||
result = I40E_XDP_CONSUMED;
|
||||
break;
|
||||
|
@ -1708,6 +1708,7 @@ static s32 igb_setup_serdes_link_82575(struct e1000_hw *hw)
|
||||
case E1000_CTRL_EXT_LINK_MODE_1000BASE_KX:
|
||||
/* disable PCS autoneg and support parallel detect only */
|
||||
pcs_autoneg = false;
|
||||
/* fall through */
|
||||
default:
|
||||
if (hw->mac.type == e1000_82575 ||
|
||||
hw->mac.type == e1000_82576) {
|
||||
|
@ -659,6 +659,7 @@ s32 igb_copper_link_setup_m88_gen2(struct e1000_hw *hw)
|
||||
phy_data |= M88E1000_PSCR_AUTO_X_1000T;
|
||||
break;
|
||||
}
|
||||
/* fall through */
|
||||
case 0:
|
||||
default:
|
||||
phy_data |= M88E1000_PSCR_AUTO_X_MODE;
|
||||
|
@ -5176,6 +5176,7 @@ bool igb_has_link(struct igb_adapter *adapter)
|
||||
case e1000_media_type_copper:
|
||||
if (!hw->mac.get_link_status)
|
||||
return true;
|
||||
/* fall through */
|
||||
case e1000_media_type_internal_serdes:
|
||||
hw->mac.ops.check_for_link(hw);
|
||||
link_active = !hw->mac.get_link_status;
|
||||
@ -5836,6 +5837,7 @@ csum_failed:
|
||||
type_tucmd = E1000_ADVTXD_TUCMD_L4T_SCTP;
|
||||
break;
|
||||
}
|
||||
/* fall through */
|
||||
default:
|
||||
skb_checksum_help(skb);
|
||||
goto csum_failed;
|
||||
|
@ -2102,6 +2102,7 @@ csum_failed:
|
||||
type_tucmd = E1000_ADVTXD_TUCMD_L4T_SCTP;
|
||||
break;
|
||||
}
|
||||
/* fall through */
|
||||
default:
|
||||
skb_checksum_help(skb);
|
||||
goto csum_failed;
|
||||
|
@ -795,8 +795,10 @@ int mlx4_en_process_rx_cq(struct net_device *dev, struct mlx4_en_cq *cq, int bud
|
||||
goto xdp_drop_no_cnt; /* Drop on xmit failure */
|
||||
default:
|
||||
bpf_warn_invalid_xdp_action(act);
|
||||
/* fall through */
|
||||
case XDP_ABORTED:
|
||||
trace_xdp_exception(dev, xdp_prog, act);
|
||||
/* fall through */
|
||||
case XDP_DROP:
|
||||
ring->xdp_drop++;
|
||||
xdp_drop_no_cnt:
|
||||
|
@ -1412,6 +1412,7 @@ int mlx4_multicast_attach(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
|
||||
case MLX4_STEERING_MODE_A0:
|
||||
if (prot == MLX4_PROT_ETH)
|
||||
return 0;
|
||||
/* fall through */
|
||||
|
||||
case MLX4_STEERING_MODE_B0:
|
||||
if (prot == MLX4_PROT_ETH)
|
||||
@ -1441,6 +1442,7 @@ int mlx4_multicast_detach(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
|
||||
case MLX4_STEERING_MODE_A0:
|
||||
if (prot == MLX4_PROT_ETH)
|
||||
return 0;
|
||||
/* fall through */
|
||||
|
||||
case MLX4_STEERING_MODE_B0:
|
||||
if (prot == MLX4_PROT_ETH)
|
||||
|
@ -91,9 +91,11 @@ bool mlx5e_xdp_handle(struct mlx5e_rq *rq, struct mlx5e_dma_info *di,
|
||||
return true;
|
||||
default:
|
||||
bpf_warn_invalid_xdp_action(act);
|
||||
/* fall through */
|
||||
case XDP_ABORTED:
|
||||
xdp_abort:
|
||||
trace_xdp_exception(rq->netdev, prog, act);
|
||||
/* fall through */
|
||||
case XDP_DROP:
|
||||
rq->stats->xdp_drop++;
|
||||
return true;
|
||||
|
@ -3783,17 +3783,20 @@ vxge_hw_rts_rth_data0_data1_get(u32 j, u64 *data0, u64 *data1,
|
||||
VXGE_HW_RTS_ACCESS_STEER_DATA0_RTH_ITEM0_ENTRY_EN |
|
||||
VXGE_HW_RTS_ACCESS_STEER_DATA0_RTH_ITEM0_BUCKET_DATA(
|
||||
itable[j]);
|
||||
/* fall through */
|
||||
case 2:
|
||||
*data0 |=
|
||||
VXGE_HW_RTS_ACCESS_STEER_DATA0_RTH_ITEM1_BUCKET_NUM(j)|
|
||||
VXGE_HW_RTS_ACCESS_STEER_DATA0_RTH_ITEM1_ENTRY_EN |
|
||||
VXGE_HW_RTS_ACCESS_STEER_DATA0_RTH_ITEM1_BUCKET_DATA(
|
||||
itable[j]);
|
||||
/* fall through */
|
||||
case 3:
|
||||
*data1 = VXGE_HW_RTS_ACCESS_STEER_DATA1_RTH_ITEM0_BUCKET_NUM(j)|
|
||||
VXGE_HW_RTS_ACCESS_STEER_DATA1_RTH_ITEM0_ENTRY_EN |
|
||||
VXGE_HW_RTS_ACCESS_STEER_DATA1_RTH_ITEM0_BUCKET_DATA(
|
||||
itable[j]);
|
||||
/* fall through */
|
||||
case 4:
|
||||
*data1 |=
|
||||
VXGE_HW_RTS_ACCESS_STEER_DATA1_RTH_ITEM1_BUCKET_NUM(j)|
|
||||
|
@ -167,9 +167,9 @@ skip:
|
||||
case NETXEN_BRDTYPE_P3_REF_QG:
|
||||
case NETXEN_BRDTYPE_P3_4_GB:
|
||||
case NETXEN_BRDTYPE_P3_4_GB_MM:
|
||||
|
||||
supported |= SUPPORTED_Autoneg;
|
||||
advertising |= ADVERTISED_Autoneg;
|
||||
/* fall through */
|
||||
case NETXEN_BRDTYPE_P2_SB31_10G_CX4:
|
||||
case NETXEN_BRDTYPE_P3_10G_CX4:
|
||||
case NETXEN_BRDTYPE_P3_10G_CX4_LP:
|
||||
@ -198,6 +198,7 @@ skip:
|
||||
supported |= SUPPORTED_TP;
|
||||
check_sfp_module = netif_running(dev) &&
|
||||
adapter->has_link_events;
|
||||
/* fall through */
|
||||
case NETXEN_BRDTYPE_P2_SB31_10G:
|
||||
case NETXEN_BRDTYPE_P3_10G_XFP:
|
||||
supported |= SUPPORTED_FIBRE;
|
||||
|
@ -1789,14 +1789,14 @@ int qed_hw_init(struct qed_dev *cdev, struct qed_hw_init_params *p_params)
|
||||
p_hwfn->hw_info.hw_mode);
|
||||
if (rc)
|
||||
break;
|
||||
/* Fall into */
|
||||
/* Fall through */
|
||||
case FW_MSG_CODE_DRV_LOAD_PORT:
|
||||
rc = qed_hw_init_port(p_hwfn, p_hwfn->p_main_ptt,
|
||||
p_hwfn->hw_info.hw_mode);
|
||||
if (rc)
|
||||
break;
|
||||
|
||||
/* Fall into */
|
||||
/* Fall through */
|
||||
case FW_MSG_CODE_DRV_LOAD_FUNCTION:
|
||||
rc = qed_hw_init_pf(p_hwfn, p_hwfn->p_main_ptt,
|
||||
p_params->p_tunn,
|
||||
|
@ -1119,8 +1119,10 @@ static bool qede_rx_xdp(struct qede_dev *edev,
|
||||
|
||||
default:
|
||||
bpf_warn_invalid_xdp_action(act);
|
||||
/* Fall through */
|
||||
case XDP_ABORTED:
|
||||
trace_xdp_exception(edev->ndev, prog, act);
|
||||
/* Fall through */
|
||||
case XDP_DROP:
|
||||
qede_recycle_rx_bd_ring(rxq, cqe->bd_num);
|
||||
}
|
||||
|
@ -351,9 +351,9 @@ skip:
|
||||
case QLCNIC_BRDTYPE_P3P_REF_QG:
|
||||
case QLCNIC_BRDTYPE_P3P_4_GB:
|
||||
case QLCNIC_BRDTYPE_P3P_4_GB_MM:
|
||||
|
||||
supported |= SUPPORTED_Autoneg;
|
||||
advertising |= ADVERTISED_Autoneg;
|
||||
/* fall through */
|
||||
case QLCNIC_BRDTYPE_P3P_10G_CX4:
|
||||
case QLCNIC_BRDTYPE_P3P_10G_CX4_LP:
|
||||
case QLCNIC_BRDTYPE_P3P_10000_BASE_T:
|
||||
@ -377,6 +377,7 @@ skip:
|
||||
supported |= SUPPORTED_TP;
|
||||
check_sfp_module = netif_running(adapter->netdev) &&
|
||||
ahw->has_link_events;
|
||||
/* fall through */
|
||||
case QLCNIC_BRDTYPE_P3P_10G_XFP:
|
||||
supported |= SUPPORTED_FIBRE;
|
||||
advertising |= ADVERTISED_FIBRE;
|
||||
|
@ -1176,6 +1176,7 @@ void ql_mpi_idc_work(struct work_struct *work)
|
||||
case MB_CMD_PORT_RESET:
|
||||
case MB_CMD_STOP_FW:
|
||||
ql_link_off(qdev);
|
||||
/* Fall through */
|
||||
case MB_CMD_SET_PORT_CFG:
|
||||
/* Signal the resulting link up AEN
|
||||
* that the frame routing and mac addr
|
||||
|
@ -319,6 +319,7 @@ static int sxgbe_get_rss_hash_opts(struct sxgbe_priv_data *priv,
|
||||
case TCP_V4_FLOW:
|
||||
case UDP_V4_FLOW:
|
||||
cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
|
||||
/* Fall through */
|
||||
case SCTP_V4_FLOW:
|
||||
case AH_ESP_V4_FLOW:
|
||||
case AH_V4_FLOW:
|
||||
@ -329,6 +330,7 @@ static int sxgbe_get_rss_hash_opts(struct sxgbe_priv_data *priv,
|
||||
case TCP_V6_FLOW:
|
||||
case UDP_V6_FLOW:
|
||||
cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
|
||||
/* Fall through */
|
||||
case SCTP_V6_FLOW:
|
||||
case AH_ESP_V6_FLOW:
|
||||
case AH_V6_FLOW:
|
||||
|
@ -963,6 +963,7 @@ ef4_ethtool_get_rxnfc(struct net_device *net_dev,
|
||||
switch (info->flow_type) {
|
||||
case TCP_V4_FLOW:
|
||||
info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
|
||||
/* Fall through */
|
||||
case UDP_V4_FLOW:
|
||||
case SCTP_V4_FLOW:
|
||||
case AH_ESP_V4_FLOW:
|
||||
|
@ -161,6 +161,7 @@ static int cpts_fifo_read(struct cpts *cpts, int match)
|
||||
*/
|
||||
break;
|
||||
}
|
||||
/* fall through */
|
||||
case CPTS_EV_PUSH:
|
||||
case CPTS_EV_RX:
|
||||
list_del_init(&event->list);
|
||||
|
@ -966,6 +966,7 @@ static int tlan_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
|
||||
switch (cmd) {
|
||||
case SIOCGMIIPHY: /* get address of MII PHY in use. */
|
||||
data->phy_id = phy;
|
||||
/* fall through */
|
||||
|
||||
|
||||
case SIOCGMIIREG: /* read MII PHY register. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user