Thanks Hernan > -----Original Message----- > From: Vargas, Hernan <[email protected]> > Sent: Thursday, May 19, 2022 8:06 PM > To: [email protected]; [email protected]; [email protected] > Cc: Chautru, Nicolas <[email protected]>; Zhang, Qi Z > <[email protected]>; Vargas, Hernan <[email protected]> > Subject: [PATCH v2 5/5] baseband/fpga_5gnr_fec: remove filler from HARQ > > From: Hernan <[email protected]> > > Removed filler bits from HARQ calculation on the N3000 FPGA since these are > already taken out by the deratematching step. > The change is only an optimization with no functional impact, no change > required on stable branches. > > Signed-off-by: Hernan <[email protected]>
Reviewed-by: Nicolas Chautru <[email protected]> > --- > drivers/baseband/fpga_5gnr_fec/rte_fpga_5gnr_fec.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/baseband/fpga_5gnr_fec/rte_fpga_5gnr_fec.c > b/drivers/baseband/fpga_5gnr_fec/rte_fpga_5gnr_fec.c > index d678695a3c..82ae6ba678 100644 > --- a/drivers/baseband/fpga_5gnr_fec/rte_fpga_5gnr_fec.c > +++ b/drivers/baseband/fpga_5gnr_fec/rte_fpga_5gnr_fec.c > @@ -1844,7 +1844,7 @@ enqueue_ldpc_dec_one_op_cb(struct fpga_queue > *q, struct rte_bbdev_dec_op *op, > else > l = k0 + e + dec->n_filler; > harq_out_length = RTE_MIN(RTE_MAX(harq_in_length, l), > - dec->n_cb - dec->n_filler); > + dec->n_cb); > dec->harq_combined_output.length = harq_out_length; > } > > -- > 2.25.1

