diff options
author | Anjali Singhai Jain <anjali.singhai@intel.com> | 2014-03-06 03:59:59 -0500 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2014-03-28 09:53:59 -0400 |
commit | 1eaa3840b786ac9294e9ed8e8dc3fdca29dc9091 (patch) | |
tree | a07e2c351e090ccc97bcf2e139eb9c162db4fe86 | |
parent | 4eb3f7685fd6ffbe28a0a4ff10cced2acda5f7ec (diff) |
i40e: Cleanup in FDIR SB ethtool code
Function add_del_fdir was used and implemented only for add. So change the name
and drop a parameter.
Change-ID: Icf2c6c3bbd4fd00cf8d9613a3f6d8c08e0f8e288
Signed-off-by: Anjali Singhai Jain <anjali.singhai@intel.com>
Signed-off-by: Catherine Sullivan <catherine.sullivan@intel.com>
Tested-by: Kavindya Deegala <kavindya.s.deegala@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
-rw-r--r-- | drivers/net/ethernet/intel/i40e/i40e_ethtool.c | 32 |
1 files changed, 13 insertions, 19 deletions
diff --git a/drivers/net/ethernet/intel/i40e/i40e_ethtool.c b/drivers/net/ethernet/intel/i40e/i40e_ethtool.c index 28da4125c8c9..0461a72b1311 100644 --- a/drivers/net/ethernet/intel/i40e/i40e_ethtool.c +++ b/drivers/net/ethernet/intel/i40e/i40e_ethtool.c | |||
@@ -62,8 +62,8 @@ static const struct i40e_stats i40e_gstrings_net_stats[] = { | |||
62 | I40E_NETDEV_STAT(rx_crc_errors), | 62 | I40E_NETDEV_STAT(rx_crc_errors), |
63 | }; | 63 | }; |
64 | 64 | ||
65 | static int i40e_add_del_fdir_ethtool(struct i40e_vsi *vsi, | 65 | static int i40e_add_fdir_ethtool(struct i40e_vsi *vsi, |
66 | struct ethtool_rxnfc *cmd, bool add); | 66 | struct ethtool_rxnfc *cmd); |
67 | 67 | ||
68 | /* These PF_STATs might look like duplicates of some NETDEV_STATs, | 68 | /* These PF_STATs might look like duplicates of some NETDEV_STATs, |
69 | * but they are separate. This device supports Virtualization, and | 69 | * but they are separate. This device supports Virtualization, and |
@@ -1470,16 +1470,15 @@ static int i40e_del_fdir_entry(struct i40e_vsi *vsi, | |||
1470 | } | 1470 | } |
1471 | 1471 | ||
1472 | /** | 1472 | /** |
1473 | * i40e_add_del_fdir_ethtool - Add/Remove Flow Director filters | 1473 | * i40e_add_fdir_ethtool - Add/Remove Flow Director filters |
1474 | * @vsi: pointer to the targeted VSI | 1474 | * @vsi: pointer to the targeted VSI |
1475 | * @cmd: command to get or set RX flow classification rules | 1475 | * @cmd: command to get or set RX flow classification rules |
1476 | * @add: true adds a filter, false removes it | ||
1477 | * | 1476 | * |
1478 | * Add/Remove Flow Director filters for a specific flow spec based on their | 1477 | * Add Flow Director filters for a specific flow spec based on their |
1479 | * protocol. Returns 0 if the filters were successfully added or removed. | 1478 | * protocol. Returns 0 if the filters were successfully added. |
1480 | **/ | 1479 | **/ |
1481 | static int i40e_add_del_fdir_ethtool(struct i40e_vsi *vsi, | 1480 | static int i40e_add_fdir_ethtool(struct i40e_vsi *vsi, |
1482 | struct ethtool_rxnfc *cmd, bool add) | 1481 | struct ethtool_rxnfc *cmd) |
1483 | { | 1482 | { |
1484 | struct ethtool_rx_flow_spec *fsp; | 1483 | struct ethtool_rx_flow_spec *fsp; |
1485 | struct i40e_fdir_filter *input; | 1484 | struct i40e_fdir_filter *input; |
@@ -1494,7 +1493,7 @@ static int i40e_add_del_fdir_ethtool(struct i40e_vsi *vsi, | |||
1494 | if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED)) | 1493 | if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED)) |
1495 | return -EOPNOTSUPP; | 1494 | return -EOPNOTSUPP; |
1496 | 1495 | ||
1497 | if (add && (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED)) | 1496 | if (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED) |
1498 | return -ENOSPC; | 1497 | return -ENOSPC; |
1499 | 1498 | ||
1500 | fsp = (struct ethtool_rx_flow_spec *)&cmd->fs; | 1499 | fsp = (struct ethtool_rx_flow_spec *)&cmd->fs; |
@@ -1504,7 +1503,7 @@ static int i40e_add_del_fdir_ethtool(struct i40e_vsi *vsi, | |||
1504 | return -EINVAL; | 1503 | return -EINVAL; |
1505 | } | 1504 | } |
1506 | 1505 | ||
1507 | if ((fsp->ring_cookie >= vsi->num_queue_pairs) && add) | 1506 | if (fsp->ring_cookie >= vsi->num_queue_pairs) |
1508 | return -EINVAL; | 1507 | return -EINVAL; |
1509 | 1508 | ||
1510 | input = kzalloc(sizeof(*input), GFP_KERNEL); | 1509 | input = kzalloc(sizeof(*input), GFP_KERNEL); |
@@ -1528,16 +1527,11 @@ static int i40e_add_del_fdir_ethtool(struct i40e_vsi *vsi, | |||
1528 | input->src_ip[0] = fsp->h_u.tcp_ip4_spec.ip4src; | 1527 | input->src_ip[0] = fsp->h_u.tcp_ip4_spec.ip4src; |
1529 | input->dst_ip[0] = fsp->h_u.tcp_ip4_spec.ip4dst; | 1528 | input->dst_ip[0] = fsp->h_u.tcp_ip4_spec.ip4dst; |
1530 | 1529 | ||
1531 | ret = i40e_add_del_fdir(vsi, input, add); | 1530 | ret = i40e_add_del_fdir(vsi, input, true); |
1532 | if (ret) { | 1531 | if (ret) |
1533 | kfree(input); | 1532 | kfree(input); |
1534 | return ret; | ||
1535 | } | ||
1536 | |||
1537 | if (!ret && add) | ||
1538 | i40e_update_ethtool_fdir_entry(vsi, input, fsp->location, NULL); | ||
1539 | else | 1533 | else |
1540 | kfree(input); | 1534 | i40e_update_ethtool_fdir_entry(vsi, input, fsp->location, NULL); |
1541 | 1535 | ||
1542 | return ret; | 1536 | return ret; |
1543 | } | 1537 | } |
@@ -1561,7 +1555,7 @@ static int i40e_set_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd) | |||
1561 | ret = i40e_set_rss_hash_opt(pf, cmd); | 1555 | ret = i40e_set_rss_hash_opt(pf, cmd); |
1562 | break; | 1556 | break; |
1563 | case ETHTOOL_SRXCLSRLINS: | 1557 | case ETHTOOL_SRXCLSRLINS: |
1564 | ret = i40e_add_del_fdir_ethtool(vsi, cmd, true); | 1558 | ret = i40e_add_fdir_ethtool(vsi, cmd); |
1565 | break; | 1559 | break; |
1566 | case ETHTOOL_SRXCLSRLDEL: | 1560 | case ETHTOOL_SRXCLSRLDEL: |
1567 | ret = i40e_del_fdir_entry(vsi, cmd); | 1561 | ret = i40e_del_fdir_entry(vsi, cmd); |