]> git.droids-corp.org - dpdk.git/commitdiff
e1000/base: check more NVM read errors
authorWenzhuo Lu <wenzhuo.lu@intel.com>
Fri, 16 Oct 2015 02:50:55 +0000 (10:50 +0800)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 27 Oct 2015 13:20:24 +0000 (14:20 +0100)
Adding code to a case where e1000_nvn_read is called, but there is no
consideration for when the read fails (returns an error code).
Also, this patch adds an error message to a base NVM reading function that
is missing it for consistency.
This patch is not covering all cases of these conditions, it only covers
the code used by the e1000e driver.

Signed-off-by: Wenzhuo Lu <wenzhuo.lu@intel.com>
drivers/net/e1000/base/e1000_82571.c
drivers/net/e1000/base/e1000_manage.c
drivers/net/e1000/base/e1000_nvm.c

index 5e0e43c9fc0e9312c001c1f8229519c1a3f90e0e..7c279dbb3c7c7690ea1c473287f5ba552338143b 100644 (file)
@@ -1452,10 +1452,14 @@ STATIC void e1000_clear_vfta_82571(struct e1000_hw *hw)
 STATIC bool e1000_check_mng_mode_82574(struct e1000_hw *hw)
 {
        u16 data;
+       s32 ret_val;
 
        DEBUGFUNC("e1000_check_mng_mode_82574");
 
-       hw->nvm.ops.read(hw, NVM_INIT_CONTROL2_REG, 1, &data);
+       ret_val = hw->nvm.ops.read(hw, NVM_INIT_CONTROL2_REG, 1, &data);
+       if (ret_val)
+               return false;
+
        return (data & E1000_NVM_INIT_CTRL2_MNGM) != 0;
 }
 
index ac4c08a3828692c1866355b7c13d9a82f33eb594..8564a7f866834455718ba2cd9908ec861d6aa44f 100644 (file)
@@ -363,9 +363,12 @@ bool e1000_enable_mng_pass_thru(struct e1000_hw *hw)
        } else if ((hw->mac.type == e1000_82574) ||
                   (hw->mac.type == e1000_82583)) {
                u16 data;
+               s32 ret_val;
 
                factps = E1000_READ_REG(hw, E1000_FACTPS);
-               e1000_read_nvm(hw, NVM_INIT_CONTROL2_REG, 1, &data);
+               ret_val = e1000_read_nvm(hw, NVM_INIT_CONTROL2_REG, 1, &data);
+               if (ret_val)
+                       return false;
 
                if (!(factps & E1000_FACTPS_MNGCG) &&
                    ((data & E1000_NVM_INIT_CTRL2_MNGM) ==
index 966a34cc51b9116e476f39c6063e629d2a285d0e..01be9e4de936b4cb343982368b71ef0c63aa067f 100644 (file)
@@ -585,6 +585,9 @@ s32 e1000_read_nvm_eerd(struct e1000_hw *hw, u16 offset, u16 words, u16 *data)
                           E1000_NVM_RW_REG_DATA);
        }
 
+       if (ret_val)
+               DEBUGOUT1("NVM read error: %d\n", ret_val);
+
        return ret_val;
 }