From: Peng Yu Date: Tue, 15 Feb 2022 05:55:52 +0000 (+0000) Subject: vhost: fix linker script syntax X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=4f670c5af0253f5276fd19f38fdfa72772c68cd0;p=dpdk.git vhost: fix linker script syntax The punctuation after the `global` keyword should be colon, not semicolon. The default gcc linker accepts both colon and semicolon, but the gold linker will report syntax error if we use semicolon after the `global` keyword. Fixes: 94c16e89d779 ("vhost: mark vDPA driver API as internal") Cc: stable@dpdk.org Signed-off-by: Peng Yu Reviewed-by: Chenbo Xia --- diff --git a/lib/vhost/version.map b/lib/vhost/version.map index 1202ba9c1a..0a66c5840c 100644 --- a/lib/vhost/version.map +++ b/lib/vhost/version.map @@ -90,7 +90,7 @@ EXPERIMENTAL { }; INTERNAL { - global; + global: rte_vdpa_register_device; rte_vdpa_relay_vring_used;