From: Greg Rose Date: Fri, 19 Mar 2010 03:00:12 +0000 (+0000) Subject: ixgbevf: Shorten up delay timer for watchdog task X-Git-Tag: v2.6.34-rc3~84^2~15 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=4c3a822395c01d50ca2ba3aa4529e19d237a2f8c;p=~emulex%2Finfiniband.git ixgbevf: Shorten up delay timer for watchdog task The recovery from PF reset works better when you shorten up the delay until the watchdog task executes. Signed-off-by: Greg Rose Signed-off-by: Jeff Kirsher Signed-off-by: David S. Miller --- diff --git a/drivers/net/ixgbevf/ixgbevf_main.c b/drivers/net/ixgbevf/ixgbevf_main.c index 43927e1b343..3de93ae70e5 100644 --- a/drivers/net/ixgbevf/ixgbevf_main.c +++ b/drivers/net/ixgbevf/ixgbevf_main.c @@ -965,7 +965,7 @@ static irqreturn_t ixgbevf_msix_mbx(int irq, void *data) if ((msg & IXGBE_MBVFICR_VFREQ_MASK) == IXGBE_PF_CONTROL_MSG) mod_timer(&adapter->watchdog_timer, - round_jiffies(jiffies + 10)); + round_jiffies(jiffies + 1)); return IRQ_HANDLED; }