[dpdk-dev] [PATCH v3] net/memif: zero-copy slave
Thomas Monjalon
thomas at monjalon.net
Sat Jul 6 11:21:28 CEST 2019
04/07/2019 11:20, Ferruh Yigit:
> On 7/3/2019 11:44 AM, Jakub Grajciar wrote:
> > Zero-copy slave support for memif PMD.
> > Slave interface exposes DPDK memory to
> > master interface. Only single file segments
> > are supported (EAL option --single-file-segments).
> >
> > Signed-off-by: Jakub Grajciar <jgrajcia at cisco.com>
>
> Applied to dpdk-next-net/master, thanks.
Sorry, we cannot get this patch in 19.08-rc1 because
it is accessing the memory configuration which is now internal:
if (!mcfg->single_file_segments) {
MIF_LOG(ERR, "Zero-copy doesn't support multi-file segments.");
return -ENOTSUP;
}
We need to find another way of doing this check,
or think about avoiding such limitation.
Sorry for the inconvenience.
PS: While at it, I advise to split your patch.
You are moving some functions in a new file and do some changes in the
same patch, so it is very hard to understand what are the real changes.
More information about the dev
mailing list