aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJacob Keller <jacob.e.keller@intel.com>2014-04-09 02:03:17 -0400
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>2014-05-23 08:28:30 -0400
commit3bf2379a2fb4a04429d99d26e3bf751f7946df74 (patch)
treee9efb965d73365db6469fe8a9afcc0720a94bdbc
parent8105ecdf3a5b7b327244b85a6f92d55fffd5f24e (diff)
ixgbe: add /* fallthrough */ comment to case statements
This semicomplex switch-case has various fallthrough portions, that were not indicated by a /* fallthrough */ comment. Signed-off-by: Jacob Keller <jacob.e.keller@intel.com> Tested-by: Phil Schmitt <phillip.j.schmitt@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
-rw-r--r--drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c
index b539e0d28a84..cc70de259829 100644
--- a/drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c
+++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c
@@ -2415,9 +2415,11 @@ static int ixgbe_get_rss_hash_opts(struct ixgbe_adapter *adapter,
2415 switch (cmd->flow_type) { 2415 switch (cmd->flow_type) {
2416 case TCP_V4_FLOW: 2416 case TCP_V4_FLOW:
2417 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3; 2417 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
2418 /* fallthrough */
2418 case UDP_V4_FLOW: 2419 case UDP_V4_FLOW:
2419 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP) 2420 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP)
2420 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3; 2421 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
2422 /* fallthrough */
2421 case SCTP_V4_FLOW: 2423 case SCTP_V4_FLOW:
2422 case AH_ESP_V4_FLOW: 2424 case AH_ESP_V4_FLOW:
2423 case AH_V4_FLOW: 2425 case AH_V4_FLOW:
@@ -2427,9 +2429,11 @@ static int ixgbe_get_rss_hash_opts(struct ixgbe_adapter *adapter,
2427 break; 2429 break;
2428 case TCP_V6_FLOW: 2430 case TCP_V6_FLOW:
2429 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3; 2431 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
2432 /* fallthrough */
2430 case UDP_V6_FLOW: 2433 case UDP_V6_FLOW:
2431 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP) 2434 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
2432 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3; 2435 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
2436 /* fallthrough */
2433 case SCTP_V6_FLOW: 2437 case SCTP_V6_FLOW:
2434 case AH_ESP_V6_FLOW: 2438 case AH_ESP_V6_FLOW:
2435 case AH_V6_FLOW: 2439 case AH_V6_FLOW: