mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 16:07:39 +00:00
crypto: qat - fix off-by-one error in PFVF debug print
[ Upstream commit dd3d081b7e
]
PFVF Block Message requests for CRC use 0-based values to indicate
amounts, which have to be remapped to 1-based values on the receiving
side.
This patch fixes one debug print which was however using the wire value.
Signed-off-by: Marco Chiappero <marco.chiappero@intel.com>
Reviewed-by: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
809f91e0ab
commit
80c5668be3
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ static struct pfvf_message handle_blkmsg_req(struct adf_accel_vf_info *vf_info,
|
|||
if (FIELD_GET(ADF_VF2PF_BLOCK_CRC_REQ_MASK, req.data)) {
|
||||
dev_dbg(&GET_DEV(vf_info->accel_dev),
|
||||
"BlockMsg of type %d for CRC over %d bytes received from VF%d\n",
|
||||
blk_type, blk_byte, vf_info->vf_nr);
|
||||
blk_type, blk_byte + 1, vf_info->vf_nr);
|
||||
|
||||
if (!adf_pf2vf_blkmsg_get_data(vf_info, blk_type, blk_byte,
|
||||
byte_max, &resp_data,
|
||||
|
|
Loading…
Reference in a new issue