Re: [dpdk-dev] [PATCH] examples/ipsec-secgw: fix parsing of flow queue

2021-09-24 Thread Akhil Goyal
> > > Documentation specifies that flow port & queue is provided as, > > > > > > <...> port 0 queue 0 > > > > > > But code is expecting the same as, > > > > > > <...> port 0 0 > > > > > > Fix the above to match documentation. > > > > > > Fixes: 8e693616fcb2 ("examples/ipsec-secgw: enable flow based

Re: [dpdk-dev] [PATCH] examples/ipsec-secgw: fix parsing of flow queue

2021-09-24 Thread Akhil Goyal
> > Documentation specifies that flow port & queue is provided as, > > > > <...> port 0 queue 0 > > > > But code is expecting the same as, > > > > <...> port 0 0 > > > > Fix the above to match documentation. > > > > Fixes: 8e693616fcb2 ("examples/ipsec-secgw: enable flow based > > distribution") >

Re: [dpdk-dev] [PATCH] examples/ipsec-secgw: fix parsing of flow queue

2021-09-16 Thread Akhil Goyal
> Documentation specifies that flow port & queue is provided as, > > <...> port 0 queue 0 > > But code is expecting the same as, > > <...> port 0 0 > > Fix the above to match documentation. > > Fixes: 8e693616fcb2 ("examples/ipsec-secgw: enable flow based > distribution") > > Signed-off-by: A

[dpdk-dev] [PATCH] examples/ipsec-secgw: fix parsing of flow queue

2021-09-15 Thread Anoob Joseph
Documentation specifies that flow port & queue is provided as, <...> port 0 queue 0 But code is expecting the same as, <...> port 0 0 Fix the above to match documentation. Fixes: 8e693616fcb2 ("examples/ipsec-secgw: enable flow based distribution") Signed-off-by: Anoob Joseph --- examples/i