From: Srujana Challa Date: Wed, 10 Jul 2024 07:51:24 +0000 (+0530) Subject: octeontx2-af: fix a issue with cpt_lf_alloc mailbox X-Git-Tag: v6.10~6^2~1^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=845fe19139ab5a1ee303a3bee327e3191c3938af;p=thirdparty%2Fkernel%2Flinux.git octeontx2-af: fix a issue with cpt_lf_alloc mailbox This patch fixes CPT_LF_ALLOC mailbox error due to incompatible mailbox message format. Specifically, it corrects the `blkaddr` field type from `int` to `u8`. Fixes: de2854c87c64 ("octeontx2-af: Mailbox changes for 98xx CPT block") Signed-off-by: Srujana Challa Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/marvell/octeontx2/af/mbox.h b/drivers/net/ethernet/marvell/octeontx2/af/mbox.h index 4a77f6fe26220..05b84581d5c56 100644 --- a/drivers/net/ethernet/marvell/octeontx2/af/mbox.h +++ b/drivers/net/ethernet/marvell/octeontx2/af/mbox.h @@ -1745,7 +1745,7 @@ struct cpt_lf_alloc_req_msg { u16 nix_pf_func; u16 sso_pf_func; u16 eng_grpmsk; - int blkaddr; + u8 blkaddr; u8 ctx_ilen_valid : 1; u8 ctx_ilen : 7; };