From: Michael Santana Francisco <msantana@redhat.com>
To: David Marchand <david.marchand@redhat.com>, dev@dpdk.org
Cc: thomas@monjalon.net, bruce.richardson@intel.com
Subject: Re: [dpdk-dev] [PATCH v2] eal: sort experimental symbols per release
Date: Fri, 26 Jul 2019 12:06:42 -0400 [thread overview]
Message-ID: <c32db03f-a8eb-1cf8-575d-dbc72c3a6444@redhat.com> (raw)
In-Reply-To: <1564149980-10470-1-git-send-email-david.marchand@redhat.com>
On 7/26/19 10:06 AM, David Marchand wrote:
> Sort the experimental symbols per release to make it easier/quicker to
> check for how long we have them.
>
> Signed-off-by: David Marchand <david.marchand@redhat.com>
> ---
> Changelog since v1:
> - rte_service symbols who got promoted to stable got reintroduced in
> experimental when rebasing this patch on master
Just going off Stephen's original proposal; it should be sorted by
release and then by alphabetical order. Some blocks weren't sorted by
alphabetical order when I ran sort after I applied your patch
>
> ---
> lib/librte_eal/rte_eal_version.map | 107 ++++++++++++++++++++-----------------
> 1 file changed, 59 insertions(+), 48 deletions(-)
>
> diff --git a/lib/librte_eal/rte_eal_version.map b/lib/librte_eal/rte_eal_version.map
> index 2344877..ed52071 100644
> --- a/lib/librte_eal/rte_eal_version.map
> +++ b/lib/librte_eal/rte_eal_version.map
> @@ -315,91 +315,101 @@ DPDK_19.08 {
> EXPERIMENTAL {
> global:
>
> - rte_class_find;
> - rte_class_find_by_name;
> - rte_class_register;
> - rte_class_unregister;
> - rte_delay_us_sleep;
> - rte_dev_dma_map;
> - rte_dev_dma_unmap;
> - rte_dev_event_callback_process;
> + # added in 18.02
> + rte_mp_action_register;
> + rte_mp_action_unregister;
> + rte_mp_reply;
> + rte_mp_sendmsg;
> +
> + # added in 18.05
> rte_dev_event_callback_register;
> rte_dev_event_callback_unregister;
> rte_dev_event_monitor_start;
> rte_dev_event_monitor_stop;
> - rte_dev_hotplug_handle_disable;
> - rte_dev_hotplug_handle_enable;
> - rte_dev_iterator_init;
> - rte_dev_iterator_next;
> - rte_extmem_attach;
> - rte_extmem_detach;
> - rte_extmem_register;
> - rte_extmem_unregister;
> rte_fbarray_attach;
> rte_fbarray_destroy;
> rte_fbarray_detach;
> rte_fbarray_dump_metadata;
> rte_fbarray_find_idx;
> - rte_fbarray_find_biggest_free;
> - rte_fbarray_find_biggest_used;
> rte_fbarray_find_next_free;
> rte_fbarray_find_next_used;
> rte_fbarray_find_next_n_free;
> rte_fbarray_find_next_n_used;
> - rte_fbarray_find_prev_free;
> - rte_fbarray_find_prev_used;
> - rte_fbarray_find_prev_n_free;
> - rte_fbarray_find_prev_n_used;
> rte_fbarray_find_contig_free;
> rte_fbarray_find_contig_used;
> - rte_fbarray_find_rev_biggest_free;
> - rte_fbarray_find_rev_biggest_used;
> - rte_fbarray_find_rev_contig_free;
> - rte_fbarray_find_rev_contig_used;
> rte_fbarray_get;
> rte_fbarray_init;
> rte_fbarray_is_used;
> rte_fbarray_set_free;
> rte_fbarray_set_used;
> - rte_intr_callback_unregister_pending;
> rte_log_register_type_and_pick_level;
> rte_malloc_dump_heaps;
> - rte_malloc_heap_create;
> - rte_malloc_heap_destroy;
> - rte_malloc_heap_get_socket;
> - rte_malloc_heap_memory_add;
> - rte_malloc_heap_memory_attach;
> - rte_malloc_heap_memory_detach;
> - rte_malloc_heap_memory_remove;
> - rte_malloc_heap_socket_is_external;
> rte_mem_alloc_validator_register;
> rte_mem_alloc_validator_unregister;
> rte_mem_check_dma_mask;
> - rte_mem_check_dma_mask_thread_unsafe;
> rte_mem_event_callback_register;
> rte_mem_event_callback_unregister;
> rte_mem_iova2virt;
> - rte_mem_set_dma_mask;
> rte_mem_virt2memseg;
> rte_mem_virt2memseg_list;
> rte_memseg_contig_walk;
> + rte_memseg_list_walk;
> + rte_memseg_walk;
> + rte_mp_request_async;
> + rte_mp_request_sync;
> +
> + # added in 18.08
> + rte_class_find;
> + rte_class_find_by_name;
> + rte_class_register;
> + rte_class_unregister;
> + rte_dev_iterator_init;
> + rte_dev_iterator_next;
> + rte_fbarray_find_prev_free;
> + rte_fbarray_find_prev_used;
> + rte_fbarray_find_prev_n_free;
> + rte_fbarray_find_prev_n_used;
> + rte_fbarray_find_rev_contig_free;
> + rte_fbarray_find_rev_contig_used;
> rte_memseg_contig_walk_thread_unsafe;
> + rte_memseg_list_walk_thread_unsafe;
> + rte_memseg_walk_thread_unsafe;
> +
> + # added in 18.11
> + rte_delay_us_sleep;
> + rte_dev_event_callback_process;
> + rte_dev_hotplug_handle_disable;
> + rte_dev_hotplug_handle_enable;
> + rte_malloc_heap_create;
> + rte_malloc_heap_destroy;
> + rte_malloc_heap_get_socket;
> + rte_malloc_heap_memory_add;
> + rte_malloc_heap_memory_attach;
> + rte_malloc_heap_memory_detach;
> + rte_malloc_heap_memory_remove;
> + rte_malloc_heap_socket_is_external;
> + rte_mem_check_dma_mask_thread_unsafe;
> + rte_mem_set_dma_mask;
> rte_memseg_get_fd;
> rte_memseg_get_fd_offset;
> rte_memseg_get_fd_thread_unsafe;
> rte_memseg_get_fd_offset_thread_unsafe;
> - rte_memseg_list_walk;
> - rte_memseg_list_walk_thread_unsafe;
> - rte_memseg_walk;
> - rte_memseg_walk_thread_unsafe;
> - rte_mp_action_register;
> - rte_mp_action_unregister;
> - rte_mp_reply;
> - rte_mp_request_sync;
> - rte_mp_request_async;
> - rte_mp_sendmsg;
> rte_option_register;
> - rte_rand_max;
> +
> + # added in 19.02
> + rte_extmem_attach;
> + rte_extmem_detach;
> + rte_extmem_register;
> + rte_extmem_unregister;
> +
> + # added in 19.05
> + rte_dev_dma_map;
> + rte_dev_dma_unmap;
> + rte_fbarray_find_biggest_free;
> + rte_fbarray_find_biggest_used;
> + rte_fbarray_find_rev_biggest_free;
> + rte_fbarray_find_rev_biggest_used;
> + rte_intr_callback_unregister_pending;
> rte_realloc_socket;
>
> # added in 19.08
> @@ -408,4 +418,5 @@ EXPERIMENTAL {
> rte_lcore_to_cpu_id;
> rte_mcfg_timer_lock;
> rte_mcfg_timer_unlock;
> + rte_rand_max;
> };
next prev parent reply other threads:[~2019-07-26 16:06 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-26 13:51 [dpdk-dev] [PATCH] eal: order " David Marchand
2019-07-26 14:02 ` David Marchand
2019-07-26 14:06 ` [dpdk-dev] [PATCH v2] eal: sort " David Marchand
2019-07-26 14:54 ` David Marchand
2019-07-26 15:04 ` Ferruh Yigit
2019-07-26 16:06 ` Michael Santana Francisco [this message]
2019-07-27 7:17 ` David Marchand
2019-07-27 7:21 ` [dpdk-dev] [PATCH v3] " David Marchand
2019-07-29 15:10 ` Michael Santana Francisco
2019-07-29 20:26 ` Thomas Monjalon
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=c32db03f-a8eb-1cf8-575d-dbc72c3a6444@redhat.com \
--to=msantana@redhat.com \
--cc=bruce.richardson@intel.com \
--cc=david.marchand@redhat.com \
--cc=dev@dpdk.org \
--cc=thomas@monjalon.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).