Re: [dpdk-dev] [PATCH] net/octeontx: fix packet corruption on Tx

2018-08-23 Thread Ferruh Yigit
On 8/17/2018 5:06 PM, santosh wrote: > > On Friday 17 August 2018 08:00 PM, Jerin Jacob wrote: >> LMTST does not guarantee packet content get synced with L2C when >> HW access the packet for transmitting. >> >> Adding coherent IO write barrier will make sure HW sees the correct >> packet if its mo

Re: [dpdk-dev] [PATCH] net/octeontx: fix packet corruption on Tx

2018-08-17 Thread santosh
On Friday 17 August 2018 08:00 PM, Jerin Jacob wrote: > LMTST does not guarantee packet content get synced with L2C when > HW access the packet for transmitting. > > Adding coherent IO write barrier will make sure HW sees the correct > packet if its modified. > > Fixes: 9e747589bd4c ("net/octeont

[dpdk-dev] [PATCH] net/octeontx: fix packet corruption on Tx

2018-08-17 Thread Jerin Jacob
LMTST does not guarantee packet content get synced with L2C when HW access the packet for transmitting. Adding coherent IO write barrier will make sure HW sees the correct packet if its modified. Fixes: 9e747589bd4c ("net/octeontx: add packet transmit burst function") Cc: sta...@dpdk.org Reporte