Commit 43f4466c authored by Ivan Vecera's avatar Ivan Vecera Committed by Tony Nguyen

i40e: Add helper to access main VSI

Add simple helper i40e_pf_get_main_vsi(pf) to access main VSI
that replaces pattern 'pf->vsi[pf->lan_vsi]'
Reviewed-by: default avatarMichal Schmidt <mschmidt@redhat.com>
Tested-by: default avatarPucha Himasekhar Reddy <himasekharx.reddy.pucha@intel.com>
Signed-off-by: default avatarIvan Vecera <ivecera@redhat.com>
Reviewed-by: default avatarSimon Horman <horms@kernel.org>
Signed-off-by: default avatarTony Nguyen <anthony.l.nguyen@intel.com>
parent 7033ada0
...@@ -1372,6 +1372,17 @@ i40e_pf_get_vsi_by_seid(struct i40e_pf *pf, u16 seid) ...@@ -1372,6 +1372,17 @@ i40e_pf_get_vsi_by_seid(struct i40e_pf *pf, u16 seid)
return NULL; return NULL;
} }
/**
* i40e_pf_get_main_vsi - get pointer to main VSI
* @pf: pointer to a PF
*
* Return: pointer to main VSI or NULL if it does not exist
**/
static inline struct i40e_vsi *i40e_pf_get_main_vsi(struct i40e_pf *pf)
{
return (pf->lan_vsi != I40E_NO_VSI) ? pf->vsi[pf->lan_vsi] : NULL;
}
/** /**
* i40e_pf_get_veb_by_seid - find VEB by SEID * i40e_pf_get_veb_by_seid - find VEB by SEID
* @pf: pointer to a PF * @pf: pointer to a PF
......
...@@ -107,8 +107,8 @@ i40e_notify_client_of_vf_msg(struct i40e_vsi *vsi, u32 vf_id, u8 *msg, u16 len) ...@@ -107,8 +107,8 @@ i40e_notify_client_of_vf_msg(struct i40e_vsi *vsi, u32 vf_id, u8 *msg, u16 len)
**/ **/
void i40e_notify_client_of_l2_param_changes(struct i40e_pf *pf) void i40e_notify_client_of_l2_param_changes(struct i40e_pf *pf)
{ {
struct i40e_vsi *vsi = i40e_pf_get_main_vsi(pf);
struct i40e_client_instance *cdev = pf->cinst; struct i40e_client_instance *cdev = pf->cinst;
struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
struct i40e_params params; struct i40e_params params;
if (!cdev || !cdev->client) if (!cdev || !cdev->client)
...@@ -333,9 +333,9 @@ static int i40e_register_auxiliary_dev(struct i40e_info *ldev, const char *name) ...@@ -333,9 +333,9 @@ static int i40e_register_auxiliary_dev(struct i40e_info *ldev, const char *name)
**/ **/
static void i40e_client_add_instance(struct i40e_pf *pf) static void i40e_client_add_instance(struct i40e_pf *pf)
{ {
struct i40e_vsi *vsi = i40e_pf_get_main_vsi(pf);
struct i40e_client_instance *cdev = NULL; struct i40e_client_instance *cdev = NULL;
struct netdev_hw_addr *mac = NULL; struct netdev_hw_addr *mac = NULL;
struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
cdev = kzalloc(sizeof(*cdev), GFP_KERNEL); cdev = kzalloc(sizeof(*cdev), GFP_KERNEL);
if (!cdev) if (!cdev)
...@@ -399,9 +399,9 @@ void i40e_client_del_instance(struct i40e_pf *pf) ...@@ -399,9 +399,9 @@ void i40e_client_del_instance(struct i40e_pf *pf)
**/ **/
void i40e_client_subtask(struct i40e_pf *pf) void i40e_client_subtask(struct i40e_pf *pf)
{ {
struct i40e_client *client; struct i40e_vsi *vsi = i40e_pf_get_main_vsi(pf);
struct i40e_client_instance *cdev; struct i40e_client_instance *cdev;
struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi]; struct i40e_client *client;
int ret = 0; int ret = 0;
if (!test_and_clear_bit(__I40E_CLIENT_SERVICE_REQUESTED, pf->state)) if (!test_and_clear_bit(__I40E_CLIENT_SERVICE_REQUESTED, pf->state))
...@@ -665,8 +665,8 @@ static int i40e_client_update_vsi_ctxt(struct i40e_info *ldev, ...@@ -665,8 +665,8 @@ static int i40e_client_update_vsi_ctxt(struct i40e_info *ldev,
bool is_vf, u32 vf_id, bool is_vf, u32 vf_id,
u32 flag, u32 valid_flag) u32 flag, u32 valid_flag)
{ {
struct i40e_vsi *vsi = i40e_pf_get_main_vsi(ldev->pf);
struct i40e_pf *pf = ldev->pf; struct i40e_pf *pf = ldev->pf;
struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
struct i40e_vsi_context ctxt; struct i40e_vsi_context ctxt;
bool update = true; bool update = true;
int err; int err;
......
...@@ -407,8 +407,9 @@ static int i40e_ddp_load(struct net_device *netdev, const u8 *data, size_t size, ...@@ -407,8 +407,9 @@ static int i40e_ddp_load(struct net_device *netdev, const u8 *data, size_t size,
**/ **/
static int i40e_ddp_restore(struct i40e_pf *pf) static int i40e_ddp_restore(struct i40e_pf *pf)
{ {
struct i40e_vsi *vsi = i40e_pf_get_main_vsi(pf);
struct net_device *netdev = vsi->netdev;
struct i40e_ddp_old_profile_list *entry; struct i40e_ddp_old_profile_list *entry;
struct net_device *netdev = pf->vsi[pf->lan_vsi]->netdev;
int status = 0; int status = 0;
if (!list_empty(&pf->ddp_old_prof)) { if (!list_empty(&pf->ddp_old_prof)) {
......
...@@ -53,6 +53,7 @@ static ssize_t i40e_dbg_command_read(struct file *filp, char __user *buffer, ...@@ -53,6 +53,7 @@ static ssize_t i40e_dbg_command_read(struct file *filp, char __user *buffer,
size_t count, loff_t *ppos) size_t count, loff_t *ppos)
{ {
struct i40e_pf *pf = filp->private_data; struct i40e_pf *pf = filp->private_data;
struct i40e_vsi *main_vsi;
int bytes_not_copied; int bytes_not_copied;
int buf_size = 256; int buf_size = 256;
char *buf; char *buf;
...@@ -68,8 +69,8 @@ static ssize_t i40e_dbg_command_read(struct file *filp, char __user *buffer, ...@@ -68,8 +69,8 @@ static ssize_t i40e_dbg_command_read(struct file *filp, char __user *buffer,
if (!buf) if (!buf)
return -ENOSPC; return -ENOSPC;
len = snprintf(buf, buf_size, "%s: %s\n", main_vsi = i40e_pf_get_main_vsi(pf);
pf->vsi[pf->lan_vsi]->netdev->name, len = snprintf(buf, buf_size, "%s: %s\n", main_vsi->netdev->name,
i40e_dbg_command_buf); i40e_dbg_command_buf);
bytes_not_copied = copy_to_user(buffer, buf, len); bytes_not_copied = copy_to_user(buffer, buf, len);
...@@ -786,7 +787,8 @@ static ssize_t i40e_dbg_command_write(struct file *filp, ...@@ -786,7 +787,8 @@ static ssize_t i40e_dbg_command_write(struct file *filp,
cnt = sscanf(&cmd_buf[7], "%i", &vsi_seid); cnt = sscanf(&cmd_buf[7], "%i", &vsi_seid);
if (cnt == 0) { if (cnt == 0) {
/* default to PF VSI */ /* default to PF VSI */
vsi_seid = pf->vsi[pf->lan_vsi]->seid; vsi = i40e_pf_get_main_vsi(pf);
vsi_seid = vsi->seid;
} else if (vsi_seid < 0) { } else if (vsi_seid < 0) {
dev_info(&pf->pdev->dev, "add VSI %d: bad vsi seid\n", dev_info(&pf->pdev->dev, "add VSI %d: bad vsi seid\n",
vsi_seid); vsi_seid);
...@@ -1030,7 +1032,7 @@ static ssize_t i40e_dbg_command_write(struct file *filp, ...@@ -1030,7 +1032,7 @@ static ssize_t i40e_dbg_command_write(struct file *filp,
goto command_write_done; goto command_write_done;
} }
vsi = pf->vsi[pf->lan_vsi]; vsi = i40e_pf_get_main_vsi(pf);
switch_id = switch_id =
le16_to_cpu(vsi->info.switch_id) & le16_to_cpu(vsi->info.switch_id) &
I40E_AQ_VSI_SW_ID_MASK; I40E_AQ_VSI_SW_ID_MASK;
...@@ -1380,6 +1382,9 @@ static ssize_t i40e_dbg_command_write(struct file *filp, ...@@ -1380,6 +1382,9 @@ static ssize_t i40e_dbg_command_write(struct file *filp,
dev_info(&pf->pdev->dev, "FD current total filter count for this interface: %d\n", dev_info(&pf->pdev->dev, "FD current total filter count for this interface: %d\n",
i40e_get_current_fd_count(pf)); i40e_get_current_fd_count(pf));
} else if (strncmp(cmd_buf, "lldp", 4) == 0) { } else if (strncmp(cmd_buf, "lldp", 4) == 0) {
/* Get main VSI */
struct i40e_vsi *main_vsi = i40e_pf_get_main_vsi(pf);
if (strncmp(&cmd_buf[5], "stop", 4) == 0) { if (strncmp(&cmd_buf[5], "stop", 4) == 0) {
int ret; int ret;
...@@ -1391,10 +1396,9 @@ static ssize_t i40e_dbg_command_write(struct file *filp, ...@@ -1391,10 +1396,9 @@ static ssize_t i40e_dbg_command_write(struct file *filp,
goto command_write_done; goto command_write_done;
} }
ret = i40e_aq_add_rem_control_packet_filter(&pf->hw, ret = i40e_aq_add_rem_control_packet_filter(&pf->hw,
pf->hw.mac.addr, pf->hw.mac.addr, ETH_P_LLDP, 0,
ETH_P_LLDP, 0, main_vsi->seid, 0, true, NULL,
pf->vsi[pf->lan_vsi]->seid, NULL);
0, true, NULL, NULL);
if (ret) { if (ret) {
dev_info(&pf->pdev->dev, dev_info(&pf->pdev->dev,
"%s: Add Control Packet Filter AQ command failed =0x%x\n", "%s: Add Control Packet Filter AQ command failed =0x%x\n",
...@@ -1409,10 +1413,9 @@ static ssize_t i40e_dbg_command_write(struct file *filp, ...@@ -1409,10 +1413,9 @@ static ssize_t i40e_dbg_command_write(struct file *filp,
int ret; int ret;
ret = i40e_aq_add_rem_control_packet_filter(&pf->hw, ret = i40e_aq_add_rem_control_packet_filter(&pf->hw,
pf->hw.mac.addr, pf->hw.mac.addr, ETH_P_LLDP, 0,
ETH_P_LLDP, 0, main_vsi->seid, 0, false, NULL,
pf->vsi[pf->lan_vsi]->seid, NULL);
0, false, NULL, NULL);
if (ret) { if (ret) {
dev_info(&pf->pdev->dev, dev_info(&pf->pdev->dev,
"%s: Remove Control Packet Filter AQ command failed =0x%x\n", "%s: Remove Control Packet Filter AQ command failed =0x%x\n",
...@@ -1639,6 +1642,7 @@ static ssize_t i40e_dbg_netdev_ops_read(struct file *filp, char __user *buffer, ...@@ -1639,6 +1642,7 @@ static ssize_t i40e_dbg_netdev_ops_read(struct file *filp, char __user *buffer,
size_t count, loff_t *ppos) size_t count, loff_t *ppos)
{ {
struct i40e_pf *pf = filp->private_data; struct i40e_pf *pf = filp->private_data;
struct i40e_vsi *main_vsi;
int bytes_not_copied; int bytes_not_copied;
int buf_size = 256; int buf_size = 256;
char *buf; char *buf;
...@@ -1654,8 +1658,8 @@ static ssize_t i40e_dbg_netdev_ops_read(struct file *filp, char __user *buffer, ...@@ -1654,8 +1658,8 @@ static ssize_t i40e_dbg_netdev_ops_read(struct file *filp, char __user *buffer,
if (!buf) if (!buf)
return -ENOSPC; return -ENOSPC;
len = snprintf(buf, buf_size, "%s: %s\n", main_vsi = i40e_pf_get_main_vsi(pf);
pf->vsi[pf->lan_vsi]->netdev->name, len = snprintf(buf, buf_size, "%s: %s\n", main_vsi->netdev->name,
i40e_dbg_netdev_ops_buf); i40e_dbg_netdev_ops_buf);
bytes_not_copied = copy_to_user(buffer, buf, len); bytes_not_copied = copy_to_user(buffer, buf, len);
......
...@@ -2029,7 +2029,7 @@ static void i40e_get_ringparam(struct net_device *netdev, ...@@ -2029,7 +2029,7 @@ static void i40e_get_ringparam(struct net_device *netdev,
{ {
struct i40e_netdev_priv *np = netdev_priv(netdev); struct i40e_netdev_priv *np = netdev_priv(netdev);
struct i40e_pf *pf = np->vsi->back; struct i40e_pf *pf = np->vsi->back;
struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi]; struct i40e_vsi *vsi = i40e_pf_get_main_vsi(pf);
ring->rx_max_pending = i40e_get_max_num_descriptors(pf); ring->rx_max_pending = i40e_get_max_num_descriptors(pf);
ring->tx_max_pending = i40e_get_max_num_descriptors(pf); ring->tx_max_pending = i40e_get_max_num_descriptors(pf);
...@@ -3370,6 +3370,7 @@ static int i40e_get_ethtool_fdir_entry(struct i40e_pf *pf, ...@@ -3370,6 +3370,7 @@ static int i40e_get_ethtool_fdir_entry(struct i40e_pf *pf,
struct i40e_rx_flow_userdef userdef = {0}; struct i40e_rx_flow_userdef userdef = {0};
struct i40e_fdir_filter *rule = NULL; struct i40e_fdir_filter *rule = NULL;
struct hlist_node *node2; struct hlist_node *node2;
struct i40e_vsi *vsi;
u64 input_set; u64 input_set;
u16 index; u16 index;
...@@ -3493,9 +3494,8 @@ static int i40e_get_ethtool_fdir_entry(struct i40e_pf *pf, ...@@ -3493,9 +3494,8 @@ static int i40e_get_ethtool_fdir_entry(struct i40e_pf *pf,
fsp->flow_type |= FLOW_EXT; fsp->flow_type |= FLOW_EXT;
} }
if (rule->dest_vsi != pf->vsi[pf->lan_vsi]->id) { vsi = i40e_pf_get_main_vsi(pf);
struct i40e_vsi *vsi; if (rule->dest_vsi != vsi->id) {
vsi = i40e_find_vsi_from_id(pf, rule->dest_vsi); vsi = i40e_find_vsi_from_id(pf, rule->dest_vsi);
if (vsi && vsi->type == I40E_VSI_SRIOV) { if (vsi && vsi->type == I40E_VSI_SRIOV) {
/* VFs are zero-indexed by the driver, but ethtool /* VFs are zero-indexed by the driver, but ethtool
......
This diff is collapsed.
...@@ -1472,7 +1472,8 @@ void i40e_ptp_restore_hw_time(struct i40e_pf *pf) ...@@ -1472,7 +1472,8 @@ void i40e_ptp_restore_hw_time(struct i40e_pf *pf)
**/ **/
void i40e_ptp_init(struct i40e_pf *pf) void i40e_ptp_init(struct i40e_pf *pf)
{ {
struct net_device *netdev = pf->vsi[pf->lan_vsi]->netdev; struct i40e_vsi *vsi = i40e_pf_get_main_vsi(pf);
struct net_device *netdev = vsi->netdev;
struct i40e_hw *hw = &pf->hw; struct i40e_hw *hw = &pf->hw;
u32 pf_id; u32 pf_id;
long err; long err;
...@@ -1536,6 +1537,7 @@ void i40e_ptp_init(struct i40e_pf *pf) ...@@ -1536,6 +1537,7 @@ void i40e_ptp_init(struct i40e_pf *pf)
**/ **/
void i40e_ptp_stop(struct i40e_pf *pf) void i40e_ptp_stop(struct i40e_pf *pf)
{ {
struct i40e_vsi *main_vsi = i40e_pf_get_main_vsi(pf);
struct i40e_hw *hw = &pf->hw; struct i40e_hw *hw = &pf->hw;
u32 regval; u32 regval;
...@@ -1555,7 +1557,7 @@ void i40e_ptp_stop(struct i40e_pf *pf) ...@@ -1555,7 +1557,7 @@ void i40e_ptp_stop(struct i40e_pf *pf)
ptp_clock_unregister(pf->ptp_clock); ptp_clock_unregister(pf->ptp_clock);
pf->ptp_clock = NULL; pf->ptp_clock = NULL;
dev_info(&pf->pdev->dev, "%s: removed PHC on %s\n", __func__, dev_info(&pf->pdev->dev, "%s: removed PHC on %s\n", __func__,
pf->vsi[pf->lan_vsi]->netdev->name); main_vsi->netdev->name);
} }
if (i40e_is_ptp_pin_dev(&pf->hw)) { if (i40e_is_ptp_pin_dev(&pf->hw)) {
......
...@@ -24,7 +24,7 @@ static void i40e_fdir(struct i40e_ring *tx_ring, ...@@ -24,7 +24,7 @@ static void i40e_fdir(struct i40e_ring *tx_ring,
{ {
struct i40e_filter_program_desc *fdir_desc; struct i40e_filter_program_desc *fdir_desc;
struct i40e_pf *pf = tx_ring->vsi->back; struct i40e_pf *pf = tx_ring->vsi->back;
u32 flex_ptype, dtype_cmd; u32 flex_ptype, dtype_cmd, vsi_id;
u16 i; u16 i;
/* grab the next descriptor */ /* grab the next descriptor */
...@@ -42,8 +42,8 @@ static void i40e_fdir(struct i40e_ring *tx_ring, ...@@ -42,8 +42,8 @@ static void i40e_fdir(struct i40e_ring *tx_ring,
flex_ptype |= FIELD_PREP(I40E_TXD_FLTR_QW0_PCTYPE_MASK, fdata->pctype); flex_ptype |= FIELD_PREP(I40E_TXD_FLTR_QW0_PCTYPE_MASK, fdata->pctype);
/* Use LAN VSI Id if not programmed by user */ /* Use LAN VSI Id if not programmed by user */
flex_ptype |= FIELD_PREP(I40E_TXD_FLTR_QW0_DEST_VSI_MASK, vsi_id = fdata->dest_vsi ? : i40e_pf_get_main_vsi(pf)->id;
fdata->dest_vsi ? : pf->vsi[pf->lan_vsi]->id); flex_ptype |= FIELD_PREP(I40E_TXD_FLTR_QW0_DEST_VSI_MASK, vsi_id);
dtype_cmd = I40E_TX_DESC_DTYPE_FILTER_PROG; dtype_cmd = I40E_TX_DESC_DTYPE_FILTER_PROG;
...@@ -869,7 +869,7 @@ u32 i40e_get_tx_pending(struct i40e_ring *ring, bool in_sw) ...@@ -869,7 +869,7 @@ u32 i40e_get_tx_pending(struct i40e_ring *ring, bool in_sw)
**/ **/
void i40e_detect_recover_hung(struct i40e_pf *pf) void i40e_detect_recover_hung(struct i40e_pf *pf)
{ {
struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi]; struct i40e_vsi *vsi = i40e_pf_get_main_vsi(pf);
struct i40e_ring *tx_ring = NULL; struct i40e_ring *tx_ring = NULL;
struct net_device *netdev; struct net_device *netdev;
unsigned int i; unsigned int i;
......
...@@ -795,13 +795,13 @@ static int i40e_config_vsi_rx_queue(struct i40e_vf *vf, u16 vsi_id, ...@@ -795,13 +795,13 @@ static int i40e_config_vsi_rx_queue(struct i40e_vf *vf, u16 vsi_id,
static int i40e_alloc_vsi_res(struct i40e_vf *vf, u8 idx) static int i40e_alloc_vsi_res(struct i40e_vf *vf, u8 idx)
{ {
struct i40e_mac_filter *f = NULL; struct i40e_mac_filter *f = NULL;
struct i40e_vsi *main_vsi, *vsi;
struct i40e_pf *pf = vf->pf; struct i40e_pf *pf = vf->pf;
struct i40e_vsi *vsi;
u64 max_tx_rate = 0; u64 max_tx_rate = 0;
int ret = 0; int ret = 0;
vsi = i40e_vsi_setup(pf, I40E_VSI_SRIOV, pf->vsi[pf->lan_vsi]->seid, main_vsi = i40e_pf_get_main_vsi(pf);
vf->vf_id); vsi = i40e_vsi_setup(pf, I40E_VSI_SRIOV, main_vsi->seid, vf->vf_id);
if (!vsi) { if (!vsi) {
dev_err(&pf->pdev->dev, dev_err(&pf->pdev->dev,
...@@ -3322,8 +3322,9 @@ static int i40e_vc_remove_vlan_msg(struct i40e_vf *vf, u8 *msg) ...@@ -3322,8 +3322,9 @@ static int i40e_vc_remove_vlan_msg(struct i40e_vf *vf, u8 *msg)
static int i40e_vc_rdma_msg(struct i40e_vf *vf, u8 *msg, u16 msglen) static int i40e_vc_rdma_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
{ {
struct i40e_pf *pf = vf->pf; struct i40e_pf *pf = vf->pf;
int abs_vf_id = vf->vf_id + pf->hw.func_caps.vf_base_id; struct i40e_vsi *main_vsi;
int aq_ret = 0; int aq_ret = 0;
int abs_vf_id;
if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states) || if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states) ||
!test_bit(I40E_VF_STATE_RDMAENA, &vf->vf_states)) { !test_bit(I40E_VF_STATE_RDMAENA, &vf->vf_states)) {
...@@ -3331,8 +3332,9 @@ static int i40e_vc_rdma_msg(struct i40e_vf *vf, u8 *msg, u16 msglen) ...@@ -3331,8 +3332,9 @@ static int i40e_vc_rdma_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
goto error_param; goto error_param;
} }
i40e_notify_client_of_vf_msg(pf->vsi[pf->lan_vsi], abs_vf_id, main_vsi = i40e_pf_get_main_vsi(pf);
msg, msglen); abs_vf_id = vf->vf_id + pf->hw.func_caps.vf_base_id;
i40e_notify_client_of_vf_msg(main_vsi, abs_vf_id, msg, msglen);
error_param: error_param:
/* send the response to the VF */ /* send the response to the VF */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment