mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 12:16:29 -04:00
octeontx2-pf: handle otx2_mbox_get_rsp errors in cn10k.c
Add error pointer check after calling otx2_mbox_get_rsp().
Fixes: 2ca89a2c37 ("octeontx2-pf: TC_MATCHALL ingress ratelimiting offload")
Signed-off-by: Dipendra Khadka <kdipendra88@gmail.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
This commit is contained in:
committed by
Andrew Lunn
parent
bd3110bc10
commit
ac9183023b
@@ -203,6 +203,11 @@ int cn10k_alloc_leaf_profile(struct otx2_nic *pfvf, u16 *leaf)
|
||||
|
||||
rsp = (struct nix_bandprof_alloc_rsp *)
|
||||
otx2_mbox_get_rsp(&pfvf->mbox.mbox, 0, &req->hdr);
|
||||
if (IS_ERR(rsp)) {
|
||||
rc = PTR_ERR(rsp);
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (!rsp->prof_count[BAND_PROF_LEAF_LAYER]) {
|
||||
rc = -EIO;
|
||||
goto out;
|
||||
|
||||
Reference in New Issue
Block a user