2021-12-24 11:05:39

by Giovanni Cabiddu

[permalink] [raw]
Subject: [PATCH] crypto: qat - fix definition of ring reset results

The ring reset result values are defined starting from 0x1 instead of 0.
This causes out-of-tree drivers that support this message to understand
that a ring reset failed even if the operation was successful.

Fix by starting the definition of ring reset result values from 0.

Fixes: 0bba03ce9739 ("crypto: qat - add PFVF support to enable the reset of ring pairs")
Signed-off-by: Giovanni Cabiddu <[email protected]>
Reported-by: Adam Guerin <[email protected]>
Reviewed-by: Marco Chiappero <[email protected]>
---
drivers/crypto/qat/qat_common/adf_pfvf_msg.h | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/crypto/qat/qat_common/adf_pfvf_msg.h b/drivers/crypto/qat/qat_common/adf_pfvf_msg.h
index 86b0e7baa4d3..9c37a2661392 100644
--- a/drivers/crypto/qat/qat_common/adf_pfvf_msg.h
+++ b/drivers/crypto/qat/qat_common/adf_pfvf_msg.h
@@ -139,10 +139,10 @@ enum pf2vf_compat_response {
};

enum ring_reset_result {
- RPRESET_SUCCESS = 0x01,
- RPRESET_NOT_SUPPORTED = 0x02,
- RPRESET_INVAL_BANK = 0x03,
- RPRESET_TIMEOUT = 0x04,
+ RPRESET_SUCCESS = 0x00,
+ RPRESET_NOT_SUPPORTED = 0x01,
+ RPRESET_INVAL_BANK = 0x02,
+ RPRESET_TIMEOUT = 0x03,
};

#define ADF_VF2PF_RNG_RESET_RP_MASK GENMASK(1, 0)
--
2.33.1



2021-12-31 11:35:40

by Herbert Xu

[permalink] [raw]
Subject: Re: [PATCH] crypto: qat - fix definition of ring reset results

On Fri, Dec 24, 2021 at 11:05:32AM +0000, Giovanni Cabiddu wrote:
> The ring reset result values are defined starting from 0x1 instead of 0.
> This causes out-of-tree drivers that support this message to understand
> that a ring reset failed even if the operation was successful.
>
> Fix by starting the definition of ring reset result values from 0.
>
> Fixes: 0bba03ce9739 ("crypto: qat - add PFVF support to enable the reset of ring pairs")
> Signed-off-by: Giovanni Cabiddu <[email protected]>
> Reported-by: Adam Guerin <[email protected]>
> Reviewed-by: Marco Chiappero <[email protected]>
> ---
> drivers/crypto/qat/qat_common/adf_pfvf_msg.h | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)

Patch applied. Thanks.
--
Email: Herbert Xu <[email protected]>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt