Re: [dpdk-dev] [PATCH v2 05/33] common/cpt: add common code for init routine

2018-09-17 Thread Thomas Monjalon
17/09/2018 14:32, Akhil Goyal: > > Hi Thomas, > > On 9/17/2018 5:16 PM, Thomas Monjalon wrote: > > > 17/09/2018 12:45, Akhil Goyal: > >> On 9/4/2018 9:28 AM, Anoob Joseph wrote: > >>> +struct pending_queue { > >>> + uint16_t enq_tail; > >>> + uint16_t deq_head; > >>> + uint16_t soft_qlen; > >>>

Re: [dpdk-dev] [PATCH v2 05/33] common/cpt: add common code for init routine

2018-09-17 Thread Akhil Goyal
Hi Thomas, On 9/17/2018 5:16 PM, Thomas Monjalon wrote: 17/09/2018 12:45, Akhil Goyal: On 9/4/2018 9:28 AM, Anoob Joseph wrote: +struct pending_queue { + uint16_t enq_tail; + uint16_t deq_head; + uint16_t soft_qlen; + /**< Software expected queue length */ +

Re: [dpdk-dev] [PATCH v2 05/33] common/cpt: add common code for init routine

2018-09-17 Thread Joseph, Anoob
Hi Thomas, On 17-09-2018 17:16, Thomas Monjalon wrote: External Email 17/09/2018 12:45, Akhil Goyal: On 9/4/2018 9:28 AM, Anoob Joseph wrote: +struct pending_queue { + uint16_t enq_tail; + uint16_t deq_head; + uint16_t soft_qlen; + /**< Software expected queue length */ + ui

Re: [dpdk-dev] [PATCH v2 05/33] common/cpt: add common code for init routine

2018-09-17 Thread Thomas Monjalon
17/09/2018 12:45, Akhil Goyal: > On 9/4/2018 9:28 AM, Anoob Joseph wrote: > > +struct pending_queue { > > + uint16_t enq_tail; > > + uint16_t deq_head; > > + uint16_t soft_qlen; > > + /**< Software expected queue length */ > > + uint16_t p_doorbell; > > + struct rid *rid_queue;

Re: [dpdk-dev] [PATCH v2 05/33] common/cpt: add common code for init routine

2018-09-17 Thread Akhil Goyal
On 9/4/2018 9:28 AM, Anoob Joseph wrote: From: Anoob Joseph Adding code identified common for OcteonTX family crypto devices. This patch is adding the code required by the structures and code path of init routine. Signed-off-by: Ankur Dwivedi Signed-off-by: Anoob Joseph Signed-off-by: Mur

[dpdk-dev] [PATCH v2 05/33] common/cpt: add common code for init routine

2018-09-03 Thread Anoob Joseph
From: Anoob Joseph Adding code identified common for OcteonTX family crypto devices. This patch is adding the code required by the structures and code path of init routine. Signed-off-by: Ankur Dwivedi Signed-off-by: Anoob Joseph Signed-off-by: Murthy NSSR Signed-off-by: Nithin Dabilpuram Si