ixgbe: Merge over-temp task into service task
This change merges the over-temp task into the service task. As a result all tasklets are finally combined into once single tasklet for easier management. Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
d034acf185
commit
f0f9778d04
@ -379,6 +379,7 @@ struct ixgbe_adapter {
|
|||||||
#define IXGBE_FLAG2_RSC_CAPABLE (u32)(1)
|
#define IXGBE_FLAG2_RSC_CAPABLE (u32)(1)
|
||||||
#define IXGBE_FLAG2_RSC_ENABLED (u32)(1 << 1)
|
#define IXGBE_FLAG2_RSC_ENABLED (u32)(1 << 1)
|
||||||
#define IXGBE_FLAG2_TEMP_SENSOR_CAPABLE (u32)(1 << 2)
|
#define IXGBE_FLAG2_TEMP_SENSOR_CAPABLE (u32)(1 << 2)
|
||||||
|
#define IXGBE_FLAG2_TEMP_SENSOR_EVENT (u32)(1 << 3)
|
||||||
#define IXGBE_FLAG2_SEARCH_FOR_SFP (u32)(1 << 4)
|
#define IXGBE_FLAG2_SEARCH_FOR_SFP (u32)(1 << 4)
|
||||||
#define IXGBE_FLAG2_SFP_NEEDS_RESET (u32)(1 << 5)
|
#define IXGBE_FLAG2_SFP_NEEDS_RESET (u32)(1 << 5)
|
||||||
#define IXGBE_FLAG2_RESET_REQUESTED (u32)(1 << 6)
|
#define IXGBE_FLAG2_RESET_REQUESTED (u32)(1 << 6)
|
||||||
@ -456,7 +457,6 @@ struct ixgbe_adapter {
|
|||||||
bool link_up;
|
bool link_up;
|
||||||
unsigned long link_check_timeout;
|
unsigned long link_check_timeout;
|
||||||
|
|
||||||
struct work_struct check_overtemp_task;
|
|
||||||
struct work_struct service_task;
|
struct work_struct service_task;
|
||||||
struct timer_list service_timer;
|
struct timer_list service_timer;
|
||||||
u32 fdir_pballoc;
|
u32 fdir_pballoc;
|
||||||
|
@ -1825,35 +1825,51 @@ static void ixgbe_set_itr_msix(struct ixgbe_q_vector *q_vector)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ixgbe_check_overtemp_task - worker thread to check over tempurature
|
* ixgbe_check_overtemp_subtask - check for over tempurature
|
||||||
* @work: pointer to work_struct containing our data
|
* @adapter: pointer to adapter
|
||||||
**/
|
**/
|
||||||
static void ixgbe_check_overtemp_task(struct work_struct *work)
|
static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter)
|
||||||
{
|
{
|
||||||
struct ixgbe_adapter *adapter = container_of(work,
|
|
||||||
struct ixgbe_adapter,
|
|
||||||
check_overtemp_task);
|
|
||||||
struct ixgbe_hw *hw = &adapter->hw;
|
struct ixgbe_hw *hw = &adapter->hw;
|
||||||
u32 eicr = adapter->interrupt_event;
|
u32 eicr = adapter->interrupt_event;
|
||||||
|
|
||||||
if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE))
|
if (test_bit(__IXGBE_DOWN, &adapter->state))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
|
||||||
|
!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT))
|
||||||
|
return;
|
||||||
|
|
||||||
|
adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT;
|
||||||
|
|
||||||
switch (hw->device_id) {
|
switch (hw->device_id) {
|
||||||
case IXGBE_DEV_ID_82599_T3_LOM: {
|
case IXGBE_DEV_ID_82599_T3_LOM:
|
||||||
|
/*
|
||||||
|
* Since the warning interrupt is for both ports
|
||||||
|
* we don't have to check if:
|
||||||
|
* - This interrupt wasn't for our port.
|
||||||
|
* - We may have missed the interrupt so always have to
|
||||||
|
* check if we got a LSC
|
||||||
|
*/
|
||||||
|
if (!(eicr & IXGBE_EICR_GPI_SDP0) &&
|
||||||
|
!(eicr & IXGBE_EICR_LSC))
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) {
|
||||||
u32 autoneg;
|
u32 autoneg;
|
||||||
bool link_up = false;
|
bool link_up = false;
|
||||||
|
|
||||||
if (hw->mac.ops.check_link)
|
|
||||||
hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
|
hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
|
||||||
|
|
||||||
if (((eicr & IXGBE_EICR_GPI_SDP0) && (!link_up)) ||
|
if (link_up)
|
||||||
(eicr & IXGBE_EICR_LSC))
|
|
||||||
/* Check if this is due to overtemp */
|
|
||||||
if (hw->phy.ops.check_overtemp(hw) == IXGBE_ERR_OVERTEMP)
|
|
||||||
break;
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Check if this is not due to overtemp */
|
||||||
|
if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP)
|
||||||
|
return;
|
||||||
|
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
if (!(eicr & IXGBE_EICR_GPI_SDP0))
|
if (!(eicr & IXGBE_EICR_GPI_SDP0))
|
||||||
return;
|
return;
|
||||||
@ -1863,8 +1879,8 @@ static void ixgbe_check_overtemp_task(struct work_struct *work)
|
|||||||
"Network adapter has been stopped because it has over heated. "
|
"Network adapter has been stopped because it has over heated. "
|
||||||
"Restart the computer. If the problem persists, "
|
"Restart the computer. If the problem persists, "
|
||||||
"power off the system and replace the adapter\n");
|
"power off the system and replace the adapter\n");
|
||||||
/* write to clear the interrupt */
|
|
||||||
IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP0);
|
adapter->interrupt_event = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
|
static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
|
||||||
@ -1940,13 +1956,6 @@ static irqreturn_t ixgbe_msix_lsc(int irq, void *data)
|
|||||||
|
|
||||||
switch (hw->mac.type) {
|
switch (hw->mac.type) {
|
||||||
case ixgbe_mac_82599EB:
|
case ixgbe_mac_82599EB:
|
||||||
ixgbe_check_sfp_event(adapter, eicr);
|
|
||||||
if ((adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
|
|
||||||
((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC))) {
|
|
||||||
adapter->interrupt_event = eicr;
|
|
||||||
schedule_work(&adapter->check_overtemp_task);
|
|
||||||
}
|
|
||||||
/* now fallthrough to handle Flow Director */
|
|
||||||
case ixgbe_mac_X540:
|
case ixgbe_mac_X540:
|
||||||
/* Handle Flow Director Full threshold interrupt */
|
/* Handle Flow Director Full threshold interrupt */
|
||||||
if (eicr & IXGBE_EICR_FLOW_DIR) {
|
if (eicr & IXGBE_EICR_FLOW_DIR) {
|
||||||
@ -1966,6 +1975,15 @@ static irqreturn_t ixgbe_msix_lsc(int irq, void *data)
|
|||||||
ixgbe_service_event_schedule(adapter);
|
ixgbe_service_event_schedule(adapter);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
ixgbe_check_sfp_event(adapter, eicr);
|
||||||
|
if ((adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
|
||||||
|
((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC))) {
|
||||||
|
if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
|
||||||
|
adapter->interrupt_event = eicr;
|
||||||
|
adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
|
||||||
|
ixgbe_service_event_schedule(adapter);
|
||||||
|
}
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
@ -2561,8 +2579,11 @@ static irqreturn_t ixgbe_intr(int irq, void *data)
|
|||||||
ixgbe_check_sfp_event(adapter, eicr);
|
ixgbe_check_sfp_event(adapter, eicr);
|
||||||
if ((adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
|
if ((adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
|
||||||
((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC))) {
|
((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC))) {
|
||||||
|
if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
|
||||||
adapter->interrupt_event = eicr;
|
adapter->interrupt_event = eicr;
|
||||||
schedule_work(&adapter->check_overtemp_task);
|
adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
|
||||||
|
ixgbe_service_event_schedule(adapter);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
@ -6379,6 +6400,7 @@ static void ixgbe_service_task(struct work_struct *work)
|
|||||||
ixgbe_reset_subtask(adapter);
|
ixgbe_reset_subtask(adapter);
|
||||||
ixgbe_sfp_detection_subtask(adapter);
|
ixgbe_sfp_detection_subtask(adapter);
|
||||||
ixgbe_sfp_link_config_subtask(adapter);
|
ixgbe_sfp_link_config_subtask(adapter);
|
||||||
|
ixgbe_check_overtemp_subtask(adapter);
|
||||||
ixgbe_watchdog_subtask(adapter);
|
ixgbe_watchdog_subtask(adapter);
|
||||||
ixgbe_fdir_reinit_subtask(adapter);
|
ixgbe_fdir_reinit_subtask(adapter);
|
||||||
ixgbe_check_hang_subtask(adapter);
|
ixgbe_check_hang_subtask(adapter);
|
||||||
@ -7648,9 +7670,6 @@ static int __devinit ixgbe_probe(struct pci_dev *pdev,
|
|||||||
/* carrier off reporting is important to ethtool even BEFORE open */
|
/* carrier off reporting is important to ethtool even BEFORE open */
|
||||||
netif_carrier_off(netdev);
|
netif_carrier_off(netdev);
|
||||||
|
|
||||||
if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
|
|
||||||
INIT_WORK(&adapter->check_overtemp_task,
|
|
||||||
ixgbe_check_overtemp_task);
|
|
||||||
#ifdef CONFIG_IXGBE_DCA
|
#ifdef CONFIG_IXGBE_DCA
|
||||||
if (dca_add_requester(&pdev->dev) == 0) {
|
if (dca_add_requester(&pdev->dev) == 0) {
|
||||||
adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
|
adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
|
||||||
@ -7707,8 +7726,6 @@ static void __devexit ixgbe_remove(struct pci_dev *pdev)
|
|||||||
set_bit(__IXGBE_DOWN, &adapter->state);
|
set_bit(__IXGBE_DOWN, &adapter->state);
|
||||||
cancel_work_sync(&adapter->service_task);
|
cancel_work_sync(&adapter->service_task);
|
||||||
|
|
||||||
if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
|
|
||||||
cancel_work_sync(&adapter->check_overtemp_task);
|
|
||||||
#ifdef CONFIG_IXGBE_DCA
|
#ifdef CONFIG_IXGBE_DCA
|
||||||
if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
|
if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
|
||||||
adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
|
adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
|
||||||
|
Loading…
Reference in New Issue
Block a user