examples/l3fwd: add vector stubs for RISC-V
[dpdk.git] / devtools / check-abi.sh
index 9835e34..d465c8c 100755 (executable)
@@ -37,11 +37,8 @@ fi
 error=
 for dump in $(find $refdir -name "*.dump"); do
        name=$(basename $dump)
-       # skip glue drivers, example librte_pmd_mlx5_glue.dump
-       # We can't rely on a suppression rule for now:
-       # https://sourceware.org/bugzilla/show_bug.cgi?id=25480
-       if grep -qE "\<soname='[^']*_glue\.so\.[^']*'" $dump; then
-               echo "Skipped glue library $name."
+       if grep -qE '\<librte_*(.*_octeontx2|raw_dpaa2_qdma)' $dump; then
+               echo "Skipped removed driver $name."
                continue
        fi
        dump2=$(find $newdir -name $name)