Browse Source

ixgbevf: Check for adapter removal on register writes

Prevent writes to an adapter that has been detected as removed
by a previous failing read.

Signed-off-by: Mark Rustad <mark.d.rustad@intel.com>
Tested-by: Phil Schmitt <phillip.j.schmitt@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Mark Rustad 11 years ago
parent
commit
984b0ee3e3
1 changed files with 5 additions and 1 deletions
  1. 5 1
      drivers/net/ethernet/intel/ixgbevf/vf.h

+ 5 - 1
drivers/net/ethernet/intel/ixgbevf/vf.h

@@ -178,7 +178,11 @@ struct ixgbevf_info {
 
 
 static inline void ixgbe_write_reg(struct ixgbe_hw *hw, u32 reg, u32 value)
 static inline void ixgbe_write_reg(struct ixgbe_hw *hw, u32 reg, u32 value)
 {
 {
-	writel(value, hw->hw_addr + reg);
+	u8 __iomem *reg_addr = ACCESS_ONCE(hw->hw_addr);
+
+	if (IXGBE_REMOVED(reg_addr))
+		return;
+	writel(value, reg_addr + reg);
 }
 }
 #define IXGBE_WRITE_REG(h, r, v) ixgbe_write_reg(h, r, v)
 #define IXGBE_WRITE_REG(h, r, v) ixgbe_write_reg(h, r, v)