mirror of
https://github.com/torvalds/linux.git
synced 2026-05-26 16:12:59 +02:00
octeontx2-af: Fix issue with loading coalesced KPU profiles
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: 11c730bfbf ("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>
This commit is contained in:
parent
ad69a730c6
commit
0ba80d9658
|
|
@ -1657,7 +1657,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 &&
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user