The complex P4 programs requires more custom instructions, therefore we increase the pipeline instruction table size from 256 to 1024.
Signed-off-by: Harshad Narayane <[email protected]> Signed-off-by: Kamalakannan R <[email protected]> Acked-by: Cristian Dumitrescu <[email protected]> --- lib/pipeline/rte_swx_pipeline_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pipeline/rte_swx_pipeline_internal.h b/lib/pipeline/rte_swx_pipeline_internal.h index 335506039b..345b32502c 100644 --- a/lib/pipeline/rte_swx_pipeline_internal.h +++ b/lib/pipeline/rte_swx_pipeline_internal.h @@ -1465,7 +1465,7 @@ instr_operand_nbo(struct thread *t, const struct instr_operand *x) #endif #ifndef RTE_SWX_PIPELINE_INSTRUCTION_TABLE_SIZE_MAX -#define RTE_SWX_PIPELINE_INSTRUCTION_TABLE_SIZE_MAX 256 +#define RTE_SWX_PIPELINE_INSTRUCTION_TABLE_SIZE_MAX 1024 #endif struct rte_swx_pipeline { -- 2.34.1

