ion to tweak the commit dates (--ignore-date).
I can look into adding it.
I've also updated our compile scripts (again) to hopefully mitigate
the issue. I've also rerun the tests for this patch with those
changes.
>
> This should avoid the issue of files in the future that
On Wed, Feb 12, 2020 at 12:38 PM Thomas Monjalon wrote:
>
> 12/02/2020 17:46, Jeremy Plsek:
> > On Wed, Feb 12, 2020 at 11:42 AM Thomas Monjalon
> > wrote:
> > >
> > > 12/02/2020 17:36, Jeremy Plsek:
> > > > On Wed, Feb 12,
On Wed, Feb 12, 2020 at 11:42 AM Thomas Monjalon wrote:
>
> 12/02/2020 17:36, Jeremy Plsek:
> > On Wed, Feb 12, 2020 at 11:30 AM Thomas Monjalon
> > wrote:
> > >
> > > 12/02/2020 16:18, Jeremy Plsek:
> > > > On Wed, Feb 12, 2020 at 10:04 AM Jere
On Wed, Feb 12, 2020 at 11:30 AM Thomas Monjalon wrote:
>
> 12/02/2020 16:18, Jeremy Plsek:
> > On Wed, Feb 12, 2020 at 10:04 AM Jeremy Plsek wrote:
> > >
> > > On Wed, Feb 12, 2020 at 4:32 AM Thomas Monjalon
> > > wrote:
> > > >
> > >
On Wed, Feb 12, 2020 at 10:04 AM Jeremy Plsek wrote:
>
> On Wed, Feb 12, 2020 at 4:32 AM Thomas Monjalon wrote:
> >
> > 12/02/2020 10:26, Xu, Rosen:
> > > I find some build error in patchwork.
> >
> > This is a failure in the unit tests, probably unre
On Wed, Feb 12, 2020 at 4:32 AM Thomas Monjalon wrote:
>
> 12/02/2020 10:26, Xu, Rosen:
> > I find some build error in patchwork.
>
> This is a failure in the unit tests, probably unrelated:
> https://lab.dpdk.org/results/dashboard/patchsets/9573/
>
> This is the error message:
> b
thub.com/mesonbuild/meson/pull/6483
Thanks for the suggestion. I applied the patch to meson and the OPT
error is gone and it now compiles.
Thanks!
--
Jeremy Plsek
UNH InterOperability Laboratory
g 7 and clang 9.
Any help or suggestions would be appreciated.
Thanks
--
Jeremy Plsek
UNH InterOperability Laboratory
builder@WIN-2IEI98HV07T C:\Users\builder\dpdk>meson -Dexamples=helloworld build
The Meson build system
Version: 0.52.1
Source dir: C:\Users\builder\dpdk
Build dir: C:\Users\builde
; > }
> > }
> >
> > +/**
> > + * Free a bulk of packet mbufs back into their original mempools.
> > + *
> > + * Free a bulk of mbufs, and all their segments in case of chained
> > buffers.
> > + * Each segment is added back into its original mempool.
> > + *
> > + * @param mbufs
> > + *Array of pointers to packet mbufs.
> > + *The array may contain NULL pointers.
> > + * @param count
> > + *Array size.
> > + */
> > +__rte_experimental
> > +void rte_pktmbuf_free_bulk(struct rte_mbuf **mbufs, unsigned int
> > count);
> > +
> > /**
> > * Creates a "clone" of the given packet mbuf.
> > *
> > diff --git a/lib/librte_mbuf/rte_mbuf_version.map
> > b/lib/librte_mbuf/rte_mbuf_version.map
> > index 2662a37bf..cd6154ef2 100644
> > --- a/lib/librte_mbuf/rte_mbuf_version.map
> > +++ b/lib/librte_mbuf/rte_mbuf_version.map
> > @@ -50,4 +50,5 @@ EXPERIMENTAL {
> > global:
> >
> > rte_mbuf_check;
> > + rte_pktmbuf_free_bulk;
> > } DPDK_18.08;
> > --
> > 2.17.1
>
--
Jeremy Plsek
UNH InterOperability Laboratory
|1 +
> >> mk/rte.app.mk|1 +
> >> 45 files changed, 20167 insertions(+)
> >> create mode 100644 doc/guides/nics/features/hns3.ini
> >> create mode 100644 doc/guides/nics/features/hns3_vf.ini
> >> create mode 100644 doc/guides/nics/hns3.rst
> >> create mode 100644 drivers/net/hns3/Makefile
> >> create mode 100644 drivers/net/hns3/hns3_cmd.c
> >> create mode 100644 drivers/net/hns3/hns3_cmd.h
> >> create mode 100644 drivers/net/hns3/hns3_dcb.c
> >> create mode 100644 drivers/net/hns3/hns3_dcb.h
> >> create mode 100644 drivers/net/hns3/hns3_ethdev.c
> >> create mode 100644 drivers/net/hns3/hns3_ethdev.h
> >> create mode 100644 drivers/net/hns3/hns3_ethdev_vf.c
> >> create mode 100644 drivers/net/hns3/hns3_fdir.c
> >> create mode 100644 drivers/net/hns3/hns3_fdir.h
> >> create mode 100644 drivers/net/hns3/hns3_flow.c
> >> create mode 100644 drivers/net/hns3/hns3_intr.c
> >> create mode 100644 drivers/net/hns3/hns3_intr.h
> >> create mode 100644 drivers/net/hns3/hns3_logs.h
> >> create mode 100644 drivers/net/hns3/hns3_mbx.c
> >> create mode 100644 drivers/net/hns3/hns3_mbx.h
> >> create mode 100644 drivers/net/hns3/hns3_mp.c
> >> create mode 100644 drivers/net/hns3/hns3_mp.h
> >> create mode 100644 drivers/net/hns3/hns3_regs.c
> >> create mode 100644 drivers/net/hns3/hns3_regs.h
> >> create mode 100644 drivers/net/hns3/hns3_rss.c
> >> create mode 100644 drivers/net/hns3/hns3_rss.h
> >> create mode 100644 drivers/net/hns3/hns3_rxtx.c
> >> create mode 100644 drivers/net/hns3/hns3_rxtx.h
> >> create mode 100644 drivers/net/hns3/hns3_stats.c
> >> create mode 100644 drivers/net/hns3/hns3_stats.h
> >> create mode 100644 drivers/net/hns3/meson.build
> >> create mode 100644 drivers/net/hns3/rte_pmd_hns3_version.map
> >>
> >
> >
>
--
Jeremy Plsek
UNH InterOperability Laboratory
10 matches
Mail list logo