Re: [PATCH v1] net/memif: fix segfault with large burst size

2023-09-29 Thread Ferruh Yigit
On 9/4/2023 8:10 AM, Joyce Kong wrote: > There will be a segfault when Rx burst size is greater than > MAX_PKT_BURST of memif. Fix the issue by correcting the > wrong mbuf index in eth_memif_rx, which results in accessing > invalid memory address. > > Bugzilla ID: 1273 > Fixes: aa17df860891 ("net/

Re: [PATCH v1] net/memif: fix segfault with large burst size

2023-09-27 Thread Ferruh Yigit
On 9/4/2023 8:10 AM, Joyce Kong wrote: > There will be a segfault when Rx burst size is greater than > MAX_PKT_BURST of memif. Fix the issue by correcting the > wrong mbuf index in eth_memif_rx, which results in accessing > invalid memory address. > > Bugzilla ID: 1273 > Fixes: aa17df860891 ("net/

[PATCH v1] net/memif: fix segfault with large burst size

2023-09-04 Thread Joyce Kong
There will be a segfault when Rx burst size is greater than MAX_PKT_BURST of memif. Fix the issue by correcting the wrong mbuf index in eth_memif_rx, which results in accessing invalid memory address. Bugzilla ID: 1273 Fixes: aa17df860891 ("net/memif: add a Rx fast path") Cc: sta...@dpdk.org Sign