Skip to content

Commit

Permalink
ixgbe: Check for adapter removal on register writes
Browse files Browse the repository at this point in the history
Prevent writes to an adapter that has been detected as removed
by a previous failing read. This also fixes some include file
ordering confusion that this patch revealed.

Signed-off-by: Mark Rustad <mark.d.rustad@intel.com>
Tested-by: Phil Schmitt <phillip.j.schmitt@intel.com>
Signed-off-by: Aaron Brown <aaron.f.brown@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Mark Rustad authored and David S. Miller committed Jan 15, 2014
1 parent 2a1a091 commit b12babd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
12 changes: 10 additions & 2 deletions drivers/net/ethernet/intel/ixgbe/ixgbe_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,11 @@ void ixgbe_check_remove(struct ixgbe_hw *hw, u32 reg);

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(a, reg, value) ixgbe_write_reg((a), (reg), (value))

Expand All @@ -150,7 +154,11 @@ static inline void writeq(u64 val, void __iomem *addr)

static inline void ixgbe_write_reg64(struct ixgbe_hw *hw, u32 reg, u64 value)
{
writeq(value, hw->hw_addr + reg);
u8 __iomem *reg_addr = ACCESS_ONCE(hw->hw_addr);

if (ixgbe_removed(reg_addr))
return;
writeq(value, reg_addr + reg);
}
#define IXGBE_WRITE_REG64(a, reg, value) ixgbe_write_reg64((a), (reg), (value))

Expand Down
3 changes: 1 addition & 2 deletions drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@

#include <linux/pci.h>
#include <linux/delay.h>
#include "ixgbe_type.h"
#include "ixgbe_common.h"
#include "ixgbe.h"
#include "ixgbe_mbx.h"

/**
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/intel/ixgbe/ixgbe_phy.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include <linux/delay.h>
#include <linux/sched.h>

#include "ixgbe_common.h"
#include "ixgbe.h"
#include "ixgbe_phy.h"

static void ixgbe_i2c_start(struct ixgbe_hw *hw);
Expand Down

0 comments on commit b12babd

Please sign in to comment.