Skip to content

Commit

Permalink
version: 24.11-rc0
Browse files Browse the repository at this point in the history
Start a new release cycle with empty release notes.

The ABI version becomes 25.0.
The map files are updated to the new ABI major number (25).
The ABI exceptions are dropped and CI ABI checks are disabled because
compatibility is not preserved.

Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Thomas Monjalon <thomas@monjalon.net>
  • Loading branch information
david-marchand committed Aug 8, 2024
1 parent b3485f4 commit cb9187b
Show file tree
Hide file tree
Showing 90 changed files with 232 additions and 114 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
MINGW: ${{ matrix.config.cross == 'mingw' }}
MINI: ${{ matrix.config.mini != '' }}
PPC64LE: ${{ matrix.config.cross == 'ppc64le' }}
REF_GIT_TAG: v24.03
REF_GIT_TAG: none
RISCV64: ${{ matrix.config.cross == 'riscv64' }}
RUN_TESTS: ${{ contains(matrix.config.checks, 'tests') }}
STDATOMIC: ${{ contains(matrix.config.checks, 'stdatomic') }}
Expand All @@ -47,7 +47,7 @@ jobs:
checks: stdatomic
- os: ubuntu-22.04
compiler: gcc
checks: abi+debug+doc+examples+tests
checks: debug+doc+examples+tests
- os: ubuntu-22.04
compiler: clang
checks: asan+doc+tests
Expand Down
2 changes: 1 addition & 1 deletion ABI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.2
25.0
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.07.0
24.11.0-rc0
19 changes: 0 additions & 19 deletions devtools/libabigail.abignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,22 +33,3 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Temporary exceptions till next major ABI version ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[suppress_type]
name = rte_mbuf
type_kind = struct
has_size_change = no
has_data_member = {cacheline0, rearm_data, rx_descriptor_fields1, cacheline1}

[suppress_type]
name = rte_pipeline_table_entry

[suppress_type]
name = rte_rcu_qsbr

[suppress_type]
name = rte_eth_fp_ops
has_data_member_inserted_between = {offset_of(reserved2), end}

[suppress_type]
name = rte_crypto_fp_ops
has_data_member_inserted_between = {offset_of(reserved), end}
1 change: 1 addition & 0 deletions doc/guides/rel_notes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Release Notes
:maxdepth: 1
:numbered:

release_24_11
release_24_07
release_24_03
release_23_11
Expand Down
136 changes: 136 additions & 0 deletions doc/guides/rel_notes/release_24_11.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,136 @@
.. SPDX-License-Identifier: BSD-3-Clause
Copyright 2024 The DPDK contributors
.. include:: <isonum.txt>

DPDK Release 24.11
==================

.. **Read this first.**
The text in the sections below explains how to update the release notes.
Use proper spelling, capitalization and punctuation in all sections.
Variable and config names should be quoted as fixed width text:
``LIKE_THIS``.
Build the docs and view the output file to ensure the changes are correct::
ninja -C build doc
xdg-open build/doc/guides/html/rel_notes/release_24_11.html
New Features
------------

.. This section should contain new features added in this release.
Sample format:
* **Add a title in the past tense with a full stop.**
Add a short 1-2 sentence description in the past tense.
The description should be enough to allow someone scanning
the release notes to understand the new feature.
If the feature adds a lot of sub-features you can use a bullet list
like this:
* Added feature foo to do something.
* Enhanced feature bar to do something else.
Refer to the previous release notes for examples.
Suggested order in release notes items:
* Core libs (EAL, mempool, ring, mbuf, buses)
* Device abstraction libs and PMDs (ordered alphabetically by vendor name)
- ethdev (lib, PMDs)
- cryptodev (lib, PMDs)
- eventdev (lib, PMDs)
- etc
* Other libs
* Apps, Examples, Tools (if significant)
This section is a comment. Do not overwrite or remove it.
Also, make sure to start the actual text at the margin.
=======================================================
Removed Items
-------------

.. This section should contain removed items in this release. Sample format:
* Add a short 1-2 sentence description of the removed item
in the past tense.
This section is a comment. Do not overwrite or remove it.
Also, make sure to start the actual text at the margin.
=======================================================
API Changes
-----------

.. This section should contain API changes. Sample format:
* sample: Add a short 1-2 sentence description of the API change
which was announced in the previous releases and made in this release.
Start with a scope label like "ethdev:".
Use fixed width quotes for ``function_names`` or ``struct_names``.
Use the past tense.
This section is a comment. Do not overwrite or remove it.
Also, make sure to start the actual text at the margin.
=======================================================
ABI Changes
-----------

.. This section should contain ABI changes. Sample format:
* sample: Add a short 1-2 sentence description of the ABI change
which was announced in the previous releases and made in this release.
Start with a scope label like "ethdev:".
Use fixed width quotes for ``function_names`` or ``struct_names``.
Use the past tense.
This section is a comment. Do not overwrite or remove it.
Also, make sure to start the actual text at the margin.
=======================================================
Known Issues
------------

.. This section should contain new known issues in this release. Sample format:
* **Add title in present tense with full stop.**
Add a short 1-2 sentence description of the known issue
in the present tense. Add information on any known workarounds.
This section is a comment. Do not overwrite or remove it.
Also, make sure to start the actual text at the margin.
=======================================================
Tested Platforms
----------------

.. This section should contain a list of platforms that were tested
with this release.
The format is:
* <vendor> platform with <vendor> <type of devices> combinations
* List of CPU
* List of OS
* List of devices
* Other relevant details...
This section is a comment. Do not overwrite or remove it.
Also, make sure to start the actual text at the margin.
=======================================================
2 changes: 1 addition & 1 deletion drivers/baseband/acc/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
local: *;
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/baseband/fpga_5gnr_fec/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
local: *;
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/baseband/fpga_lte_fec/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
local: *;
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/bus/fslmc/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
global:

rte_fslmc_vfio_mem_dmamap;
Expand Down
2 changes: 1 addition & 1 deletion drivers/bus/pci/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
global:

rte_pci_dump;
Expand Down
2 changes: 1 addition & 1 deletion drivers/bus/platform/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
local: *;
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/bus/vdev/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
global:

rte_vdev_add_custom_scan;
Expand Down
2 changes: 1 addition & 1 deletion drivers/bus/vmbus/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
global:

rte_vmbus_chan_close;
Expand Down
2 changes: 1 addition & 1 deletion drivers/crypto/octeontx/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
local: *;
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/crypto/scheduler/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
global:

rte_cryptodev_scheduler_load_user_scheduler;
Expand Down
2 changes: 1 addition & 1 deletion drivers/dma/dpaa2/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
local: *;
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/event/cnxk/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
local: *;
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/event/dlb2/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
local: *;
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/mempool/cnxk/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
local: *;
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/mempool/dpaa2/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
global:

rte_dpaa2_mbuf_from_buf_addr;
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/atlantic/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
local: *;
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/net/bnxt/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
global:

rte_pmd_bnxt_get_vf_rx_status;
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/bonding/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
global:

rte_eth_bond_8023ad_agg_selection_get;
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/cnxk/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
local: *;
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/net/dpaa/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
global:

rte_pmd_dpaa_set_tx_loopback;
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/dpaa2/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
global:

rte_pmd_dpaa2_mux_flow_create;
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/i40e/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
global:

rte_pmd_i40e_add_vf_mac_addr;
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/iavf/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
local: *;
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ice/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
local: *;
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ipn3ke/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
local: *;
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ixgbe/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
global:

rte_pmd_ixgbe_bypass_event_show;
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/mlx5/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
local: *;
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/net/octeontx/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
global:

rte_octeontx_pchan_map;
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ring/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
global:

rte_eth_from_ring;
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/softnic/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
global:

rte_pmd_softnic_manage;
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/vhost/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
global:

rte_eth_vhost_get_queue_event;
Expand Down
2 changes: 1 addition & 1 deletion drivers/raw/ifpga/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
global:

rte_pmd_ifpga_cleanup;
Expand Down
2 changes: 1 addition & 1 deletion drivers/version.map
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
DPDK_24 {
DPDK_25 {
local: *;
};
2 changes: 1 addition & 1 deletion lib/acl/version.map
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DPDK_24 {
DPDK_25 {
global:

rte_acl_add_rules;
Expand Down
Loading

0 comments on commit cb9187b

Please sign in to comment.