-
Notifications
You must be signed in to change notification settings - Fork 140
[PATCH v6] api: increment ODP API version to 1.49.0 #2301
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
1be02c9 to
b08f6ab
Compare
b08f6ab to
18ddc9a
Compare
CHANGELOG
Outdated
| * Clarify that a barrier must be initialized before first use and can be | ||
| reinitialized if not in use. | ||
| * Explicitly state that a memory barrier can be reused without initializing it | ||
| again. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"memory barrier": This change is about thread execution barriers. Use just "barrier" or "thread execution barrier".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed in v4.
psavol
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One comment, otherwise OK.
18ddc9a to
ddb1b14
Compare
ddb1b14 to
e17b4f1
Compare
Update CHANGELOG to use standard Markdown heading syntax. Improves compatibility with Markdown tools and eases copying release notes to GitHub. Signed-off-by: Matias Elo <matias.elo@nokia.com> Reviewed-by: Petri Savolainen <petri.savolainen@nokia.com>
Increment API version number to reflect the following changes: Backward compatible: - barrier: clarify that a barrier must be initialized before first use and can be reinitialized if not in use - barrier: clarify that a barrier can be reused without initializing it again - barrier: clarify that no more than N threads may be inside odp_barrier_wait() for a barrier of N threads - classifier: clarify that event aggregation is performed automatically for classified packets when aggregation is enabled in CoS parameters - classifier: clarify that classifier accessor functions return always base queue handles - crypto: add SNOW5G cipher and integrity algorithms ODP_CIPHER_ALG_SNOW5G_NEA4 and ODP_AUTH_ALG_SNOW5G_NIA4 - crypto: change description of odp_crypto_session_param_t.output_pool - pktio: clarify that event aggregation is performed automatically for incoming packets when aggregation is enabled in packet input queue parameters - pktio: clarify that odp_pktin_event_queue() returns always base input queue handles - queue: add new 'type' and 'aggr_config' fields to odp_queue_info_t and document struct contents better for event aggregator queues Remove deprecated APIs: - crypto: remove deprecated ODP_CRYPTO_OP_TYPE_LEGACY op type - pktio: remove deprecated odp_pktio_capability_t.tx_compl.mode_all field - pktio: remove deprecated odp_pktout_config_opt_t.bit.tx_compl_ena field - pktio: remove deprecated ODP_PACKET_TX_COMPL_ALL define - timer: remove deprecated odp_timer_pool_start() function Signed-off-by: Matias Elo <matias.elo@nokia.com> Reviewed-by: Petri Savolainen <petri.savolainen@nokia.com>
e17b4f1 to
197fd5e
Compare
V2:
V3: