On Tue, Jun 27, 2023 at 6:54 PM Abdullah Sevincer <abdullah.sevin...@intel.com> wrote: > > Revise QE weight feature to enable from command line > just passing a flag. If QE weight feature is enabled > simply port cq weight will be same as dequeue depth. > > Also, update DLB documentation for revised QE weight feature and > usage of eventdev application with DLB hardware. > > Signed-off-by: Abdullah Sevincer <abdullah.sevin...@intel.com> > > @@ -4774,11 +4728,11 @@ dlb2_parse_params(const char *params, > DLB2_VECTOR_OPTS_ENAB_ARG, > DLB2_MAX_CQ_DEPTH, > DLB2_MAX_ENQ_DEPTH, > - DLB2_CQ_WEIGHT, > DLB2_PORT_COS, > DLB2_COS_BW, > DLB2_PRODUCER_COREMASK, > > DLB2_DEFAULT_LDB_PORT_ALLOCATION_ARG, > + DLB2_ENABLE_CQ_WEIGHT_ARG,
Alignment lost here. Added following diff to the patch [for-main]dell[dpdk-next-eventdev] $ git diff diff --git a/drivers/event/dlb2/dlb2.c b/drivers/event/dlb2/dlb2.c index 07c9384950..3bc9d7408f 100644 --- a/drivers/event/dlb2/dlb2.c +++ b/drivers/event/dlb2/dlb2.c @@ -4732,7 +4732,7 @@ dlb2_parse_params(const char *params, DLB2_COS_BW, DLB2_PRODUCER_COREMASK, DLB2_DEFAULT_LDB_PORT_ALLOCATION_ARG, - DLB2_ENABLE_CQ_WEIGHT_ARG, + DLB2_ENABLE_CQ_WEIGHT_ARG, NULL }; Updated the git commit as follows and applied to dpdk-next-net-eventdev/for-main. Thanks event/dlb2: revise QE weight feature Revise QE weight feature to enable from command line just passing a flag. If QE weight feature is enabled simply port CQ weight will be same as dequeue depth. Also, updated DLB documentation for revised QE weight feature and usage of eventdev application with DLB hardware. Signed-off-by: Abdullah Sevincer <abdullah.sevin...@intel.com> > NULL };