On Mon, Sep 10, 2018 at 7:45 AM, David Marchand <david.march...@6wind.com> wrote: > Let's add a little helper that does the same as rte_mbuf_sanity_check but > without the panic. > > Signed-off-by: David Marchand <david.march...@6wind.com> > --- > lib/librte_mbuf/Makefile | 2 + > lib/librte_mbuf/meson.build | 2 + > lib/librte_mbuf/rte_mbuf.c | 74 ++++++++++++++++++++-------- > lib/librte_mbuf/rte_mbuf.h | 23 +++++++++ > lib/librte_mbuf/rte_mbuf_version.map | 6 +++
Applied a little patch on devtools/check-symbol-change.sh @@ -115,7 +115,7 @@ check_for_rule_violations() if [ $? -ne 0 ] then echo -n "ERROR: symbol $symname " - echo -n "is added in a section " + echo -n "is added in $secname section " echo -n "other than the EXPERIMENTAL " echo "section of the version map" ret=1 And here is what I get when I check my patch with it: marchand@gribouille:~/git/dpdk$ ./devtools/check-symbol-change.sh sanity/0002-mbuf-add-a-non-fatal-sanity-check-helper.patch ERROR: symbol rte_mbuf_check is added in +EXPERIMENTAL section other than the EXPERIMENTAL section of the version map Is this because the EXPERIMENTAL section is added in the same patch ? -- David Marchand