i40evf: Add more info to interrupt vector names
authorCarolyn Wyborny <[email protected]>
Fri, 6 Feb 2015 08:52:20 +0000 (08:52 +0000)
committerJeff Kirsher <[email protected]>
Wed, 25 Feb 2015 07:24:12 +0000 (23:24 -0800)
This patch adds the netdev name to the VF misc vector name.  Without
this patch, all the interrupts show the same info, so it difficult to
distinguish them.

Change-ID: I247828697e1373ecfb5f8dc1bc9618e98a7f4942
Signed-off-by: Carolyn Wyborny <[email protected]>
Tested-by: Jim Young <[email protected]>
Signed-off-by: Jeff Kirsher <[email protected]>
drivers/net/ethernet/intel/i40evf/i40evf_main.c

index e089e8f98413c386a7bf3b7607e29baf9b286701..de507b365ba99307cc07a769664011519fb091cb 100644 (file)
@@ -524,7 +524,8 @@ static int i40evf_request_misc_irq(struct i40evf_adapter *adapter)
        int err;
 
        snprintf(adapter->misc_vector_name,
-                sizeof(adapter->misc_vector_name) - 1, "i40evf:mbx");
+                sizeof(adapter->misc_vector_name) - 1, "i40evf-%s:mbx",
+                dev_name(&adapter->pdev->dev));
        err = request_irq(adapter->msix_entries[0].vector,
                          &i40evf_msix_aq, 0,
                          adapter->misc_vector_name, netdev);