event/cnxk: fix symbol map

Message ID 20231017123600.3189269-1-david.marchand@redhat.com (mailing list archive)
State Accepted, archived
Delegated to: David Marchand
Headers
Series event/cnxk: fix symbol map |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/loongarch-compilation success Compilation OK
ci/loongarch-unit-testing success Unit Testing PASS
ci/iol-broadcom-Performance success Performance Testing PASS
ci/iol-broadcom-Functional success Functional Testing PASS
ci/iol-mellanox-Performance success Performance Testing PASS
ci/iol-intel-Performance success Performance Testing PASS
ci/iol-unit-arm64-testing success Testing PASS
ci/iol-compile-amd64-testing success Testing PASS
ci/iol-compile-arm64-testing success Testing PASS
ci/iol-unit-amd64-testing success Testing PASS
ci/iol-intel-Functional success Functional Testing PASS

Commit Message

David Marchand Oct. 17, 2023, 12:35 p.m. UTC
  Caught while rebasing a series that check map files.

Remove superfluous whitespace.
Current ABI number is 24.
Sort experimental symbols and annotate them with the version they are
introduced in.

Fixes: 03714a41bd26 ("event/cnxk: add event port flow context API")

Signed-off-by: David Marchand <david.marchand@redhat.com>
---
 drivers/event/cnxk/version.map | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)
  

Comments

Pavan Nikhilesh Bhagavatula Oct. 17, 2023, 12:38 p.m. UTC | #1
> Caught while rebasing a series that check map files.
> 
> Remove superfluous whitespace.
> Current ABI number is 24.
> Sort experimental symbols and annotate them with the version they are
> introduced in.
> 
> Fixes: 03714a41bd26 ("event/cnxk: add event port flow context API")
> 
> Signed-off-by: David Marchand <david.marchand@redhat.com>

Thank you.

Acked-by: Pavan Nikhilesh <pbhagavatula@marvell.com>

> ---
>  drivers/event/cnxk/version.map | 12 +++++++-----
>  1 file changed, 7 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/event/cnxk/version.map
> b/drivers/event/cnxk/version.map
> index 9dbf8eb59d..3dd9a8fdd1 100644
> --- a/drivers/event/cnxk/version.map
> +++ b/drivers/event/cnxk/version.map
> @@ -1,9 +1,11 @@
> - DPDK_23 {
> +DPDK_24 {
>  	local: *;
> - };
> +};
> 
> - EXPERIMENTAL {
> +EXPERIMENTAL {
>  	global:
> -	rte_pmd_cnxk_eventdev_wait_head;
> +
> +	# added in 23.11
>  	rte_pmd_cnxk_eventdev_is_head;
> - };
> +	rte_pmd_cnxk_eventdev_wait_head;
> +};
> --
> 2.41.0
  

Patch

diff --git a/drivers/event/cnxk/version.map b/drivers/event/cnxk/version.map
index 9dbf8eb59d..3dd9a8fdd1 100644
--- a/drivers/event/cnxk/version.map
+++ b/drivers/event/cnxk/version.map
@@ -1,9 +1,11 @@ 
- DPDK_23 {
+DPDK_24 {
 	local: *;
- };
+};
 
- EXPERIMENTAL {
+EXPERIMENTAL {
 	global:
-	rte_pmd_cnxk_eventdev_wait_head;
+
+	# added in 23.11
 	rte_pmd_cnxk_eventdev_is_head;
- };
+	rte_pmd_cnxk_eventdev_wait_head;
+};