[v1] net/ice/base: fix ddp pkg loaded failed

Message ID 20220907091001.68216-1-stevex.yang@intel.com (mailing list archive)
State Superseded, archived
Delegated to: Qi Zhang
Headers
Series [v1] net/ice/base: fix ddp pkg loaded failed |

Checks

Context Check Description
ci/checkpatch success coding style OK

Commit Message

Steve Yang Sept. 7, 2022, 9:10 a.m. UTC
  When DDP package state is 'ICE_DDP_PKG_SAME_VERSION_ALREADY_LOADED',
it should be treated as success state, otherwise, the wrong state will
be used within 'ice_load_pkg'.

Fixes: 58e9fd55be0e ("net/ice/base: refactor DDP code")

Signed-off-by: Steve Yang <stevex.yang@intel.com>
---
 drivers/net/ice/base/ice_ddp.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
  

Comments

Qi Zhang Sept. 7, 2022, 12:17 p.m. UTC | #1
> -----Original Message-----
> From: Yang, SteveX <stevex.yang@intel.com>
> Sent: Wednesday, September 7, 2022 5:10 PM
> To: dev@dpdk.org
> Cc: Yang, Qiming <qiming.yang@intel.com>; Zhang, Qi Z
> <qi.z.zhang@intel.com>; Yang, SteveX <stevex.yang@intel.com>
> Subject: [PATCH v1] net/ice/base: fix ddp pkg loaded failed
> 
> When DDP package state is
> 'ICE_DDP_PKG_SAME_VERSION_ALREADY_LOADED',
> it should be treated as success state, otherwise, the wrong state will be used
> within 'ice_load_pkg'.
> 
> Fixes: 58e9fd55be0e ("net/ice/base: refactor DDP code")
> 
> Signed-off-by: Steve Yang <stevex.yang@intel.com>
> ---
>  drivers/net/ice/base/ice_ddp.c | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/net/ice/base/ice_ddp.c b/drivers/net/ice/base/ice_ddp.c
> index d1cae48047..284b58a6b1 100644
> --- a/drivers/net/ice/base/ice_ddp.c
> +++ b/drivers/net/ice/base/ice_ddp.c
> @@ -1378,8 +1378,11 @@ enum ice_ddp_state ice_init_pkg(struct ice_hw
> *hw, u8 *buf, u32 len)
>  	 */
>  	if (!state || state == ICE_DDP_PKG_ALREADY_LOADED) {
>  		state = ice_get_pkg_info(hw);
> -		if (!state)
> +		if (!state) {
>  			state = ice_get_ddp_pkg_state(hw, already_loaded);
> +			if (state ==
> ICE_DDP_PKG_SAME_VERSION_ALREADY_LOADED)

We can use ice_is_init_pkg_successful to check the return value which also accept ICE_DDP_PKG_COMPATIBLE_ALREADY_LOADED and this is expected.

Btw, I didn't notice this patch has been sent before I send another one for the same purpose, this one can be superseded.



> +				state = ICE_SUCCESS;
> +		}
>  	}
> 
>  	if (ice_is_init_pkg_successful(state)) {
> --
> 2.25.1
  

Patch

diff --git a/drivers/net/ice/base/ice_ddp.c b/drivers/net/ice/base/ice_ddp.c
index d1cae48047..284b58a6b1 100644
--- a/drivers/net/ice/base/ice_ddp.c
+++ b/drivers/net/ice/base/ice_ddp.c
@@ -1378,8 +1378,11 @@  enum ice_ddp_state ice_init_pkg(struct ice_hw *hw, u8 *buf, u32 len)
 	 */
 	if (!state || state == ICE_DDP_PKG_ALREADY_LOADED) {
 		state = ice_get_pkg_info(hw);
-		if (!state)
+		if (!state) {
 			state = ice_get_ddp_pkg_state(hw, already_loaded);
+			if (state == ICE_DDP_PKG_SAME_VERSION_ALREADY_LOADED)
+				state = ICE_SUCCESS;
+		}
 	}
 
 	if (ice_is_init_pkg_successful(state)) {