]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
octeontx2-af: Fix issue with loading coalesced KPU profiles
authorHariprasad Kelam <hkelam@marvell.com>
Tue, 26 Mar 2024 12:21:49 +0000 (17:51 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 10 Apr 2024 14:19:39 +0000 (16:19 +0200)
commit 0ba80d96585662299d4ea4624043759ce9015421 upstream.

The current implementation for loading coalesced KPU profiles has
a limitation.  The "offset" field, which is used to locate profiles
within the profile is restricted to a u16.

This restricts the number of profiles that can be loaded. This patch
addresses this limitation by increasing the size of the "offset" field.

Fixes: 11c730bfbf5b ("octeontx2-af: support for coalescing KPU profiles")
Signed-off-by: Hariprasad Kelam <hkelam@marvell.com>
Reviewed-by: Kalesh AP <kalesh-anakkur.purayil@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/ethernet/marvell/octeontx2/af/rvu_npc.c

index 604aaa9b960e9977c2dec98bf5f6139e51d52617..c6b6d709e5908532bce0fc6b2a06708b269ef12c 100644 (file)
@@ -1622,7 +1622,7 @@ static int npc_fwdb_detect_load_prfl_img(struct rvu *rvu, uint64_t prfl_sz,
        struct npc_coalesced_kpu_prfl *img_data = NULL;
        int i = 0, rc = -EINVAL;
        void __iomem *kpu_prfl_addr;
-       u16 offset;
+       u32 offset;
 
        img_data = (struct npc_coalesced_kpu_prfl __force *)rvu->kpu_prfl_addr;
        if (le64_to_cpu(img_data->signature) == KPU_SIGN &&