i40e: Add description to misc and fd interrupts
This patch adds additional text description for base pf0 and flow director generated interrupts. Without this patch, these interrupts are difficult to distinguish per port on a multi-function device. Change-ID: I4662e1b38840757765a3fe63d90219d28e76bfab Signed-off-by: Carolyn Wyborny <carolyn.wyborny@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:

committed by
Jeff Kirsher

parent
fbe8210100
commit
b2008cbf8a
@@ -4870,9 +4870,11 @@ int i40e_vsi_open(struct i40e_vsi *vsi)
|
||||
goto err_set_queues;
|
||||
|
||||
} else if (vsi->type == I40E_VSI_FDIR) {
|
||||
snprintf(int_name, sizeof(int_name) - 1, "%s-fdir",
|
||||
dev_driver_string(&pf->pdev->dev));
|
||||
snprintf(int_name, sizeof(int_name) - 1, "%s-%s-fdir",
|
||||
dev_driver_string(&pf->pdev->dev),
|
||||
dev_name(&pf->pdev->dev));
|
||||
err = i40e_vsi_request_irq(vsi, int_name);
|
||||
|
||||
} else {
|
||||
err = -EINVAL;
|
||||
goto err_setup_rx;
|
||||
@@ -9141,9 +9143,10 @@ static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE;
|
||||
hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE;
|
||||
pf->adminq_work_limit = I40E_AQ_WORK_LIMIT;
|
||||
|
||||
snprintf(pf->misc_int_name, sizeof(pf->misc_int_name) - 1,
|
||||
"%s-pf%d:misc",
|
||||
dev_driver_string(&pf->pdev->dev), pf->hw.pf_id);
|
||||
"%s-%s:misc",
|
||||
dev_driver_string(&pf->pdev->dev), dev_name(&pdev->dev));
|
||||
|
||||
err = i40e_init_shared_code(hw);
|
||||
if (err) {
|
||||
|
Reference in New Issue
Block a user