[v2,00/14] eal: mark older API's as stable

Message ID 20231020214119.255491-1-stephen@networkplumber.org (mailing list archive)
Headers
Series eal: mark older API's as stable |

Message

Stephen Hemminger Oct. 20, 2023, 9:41 p.m. UTC
  About 80 function in EAL were marked experimental
and should have been made stable by now.

v2 - rebase and fix some bits in wrong patch

Stephen Hemminger (14):
  eal: make bitops a stable API
  eal: mark rte_dev API's as stable
  eal: make rte_class API's stable
  eal: make rte_drand a stable API
  eal: make rte_service_lcore_may_be_active stable
  eal: make rte_devargs_reset stable
  eal: make pflock API stable
  eal: make seqcount and seqlock stable
  eal: mark rte_intr_XXX API's as stable
  eal: mark rte_atomic128_cmp_exchange as stable
  eal: mark rte_power API's stable
  eal: mark rte_eal_vfio_get_token stable
  eal: mark rte_vect simd bandwidth API as stable
  eal: make rte_version API's stable

 lib/eal/arm/include/rte_atomic_64.h           |  1 -
 lib/eal/include/generic/rte_atomic.h          |  1 -
 .../include/generic/rte_power_intrinsics.h    | 16 ----
 lib/eal/include/generic/rte_vect.h            |  8 --
 lib/eal/include/rte_bitmap.h                  |  8 --
 lib/eal/include/rte_bitops.h                  | 40 --------
 lib/eal/include/rte_class.h                   |  4 -
 lib/eal/include/rte_dev.h                     | 32 -------
 lib/eal/include/rte_devargs.h                 |  1 -
 lib/eal/include/rte_eal.h                     |  4 -
 lib/eal/include/rte_interrupts.h              | 28 ------
 lib/eal/include/rte_pflock.h                  | 20 ----
 lib/eal/include/rte_random.h                  |  4 -
 lib/eal/include/rte_seqcount.h                | 23 -----
 lib/eal/include/rte_seqlock.h                 | 21 ----
 lib/eal/include/rte_service.h                 |  1 -
 lib/eal/include/rte_version.h                 |  6 --
 lib/eal/version.map                           | 96 ++++++++-----------
 lib/eal/x86/include/rte_atomic_64.h           |  1 -
 19 files changed, 38 insertions(+), 277 deletions(-)
  

Comments

Bruce Richardson Oct. 23, 2023, 9:13 a.m. UTC | #1
On Fri, Oct 20, 2023 at 02:41:05PM -0700, Stephen Hemminger wrote:
> About 80 function in EAL were marked experimental
> and should have been made stable by now.
> 
> v2 - rebase and fix some bits in wrong patch
> 
> Stephen Hemminger (14):
>   eal: make bitops a stable API
>   eal: mark rte_dev API's as stable
>   eal: make rte_class API's stable
>   eal: make rte_drand a stable API
>   eal: make rte_service_lcore_may_be_active stable
>   eal: make rte_devargs_reset stable
>   eal: make pflock API stable
>   eal: make seqcount and seqlock stable
>   eal: mark rte_intr_XXX API's as stable
>   eal: mark rte_atomic128_cmp_exchange as stable
>   eal: mark rte_power API's stable
>   eal: mark rte_eal_vfio_get_token stable
>   eal: mark rte_vect simd bandwidth API as stable
>   eal: make rte_version API's stable
> 
Series-acked-by: Bruce Richardson <bruce.richardson@intel.com>
  
David Marchand Nov. 14, 2023, 1:10 p.m. UTC | #2
On Fri, Oct 20, 2023 at 11:41 PM Stephen Hemminger
<stephen@networkplumber.org> wrote:
>
> About 80 function in EAL were marked experimental
> and should have been made stable by now.
>
> v2 - rebase and fix some bits in wrong patch
>
> Stephen Hemminger (14):
>   eal: make bitops a stable API
>   eal: mark rte_dev API's as stable
>   eal: make rte_class API's stable
>   eal: make rte_drand a stable API
>   eal: make rte_service_lcore_may_be_active stable
>   eal: make rte_devargs_reset stable
>   eal: make pflock API stable
>   eal: make seqcount and seqlock stable
>   eal: mark rte_intr_XXX API's as stable
>   eal: mark rte_atomic128_cmp_exchange as stable
>   eal: mark rte_power API's stable
>   eal: mark rte_eal_vfio_get_token stable
>   eal: mark rte_vect simd bandwidth API as stable
>   eal: make rte_version API's stable
>
>  lib/eal/arm/include/rte_atomic_64.h           |  1 -
>  lib/eal/include/generic/rte_atomic.h          |  1 -
>  .../include/generic/rte_power_intrinsics.h    | 16 ----
>  lib/eal/include/generic/rte_vect.h            |  8 --
>  lib/eal/include/rte_bitmap.h                  |  8 --
>  lib/eal/include/rte_bitops.h                  | 40 --------
>  lib/eal/include/rte_class.h                   |  4 -
>  lib/eal/include/rte_dev.h                     | 32 -------
>  lib/eal/include/rte_devargs.h                 |  1 -
>  lib/eal/include/rte_eal.h                     |  4 -
>  lib/eal/include/rte_interrupts.h              | 28 ------
>  lib/eal/include/rte_pflock.h                  | 20 ----
>  lib/eal/include/rte_random.h                  |  4 -
>  lib/eal/include/rte_seqcount.h                | 23 -----
>  lib/eal/include/rte_seqlock.h                 | 21 ----
>  lib/eal/include/rte_service.h                 |  1 -
>  lib/eal/include/rte_version.h                 |  6 --
>  lib/eal/version.map                           | 96 ++++++++-----------
>  lib/eal/x86/include/rte_atomic_64.h           |  1 -
>  19 files changed, 38 insertions(+), 277 deletions(-)

Series applied.
Thanks.