diff options
| author | Pavan Nikhilesh <[email protected]> | 2024-10-07 18:39:46 +0530 |
|---|---|---|
| committer | Jerin Jacob <[email protected]> | 2024-10-08 07:15:06 +0200 |
| commit | 4ade669c2823c0ebcaf7bfb7589db13cb2e4a6d8 (patch) | |
| tree | 2a29d6e857acf4f064ab7f902756c6f1100a820d /lib/eventdev/version.map | |
| parent | c1bdd86d04d161c07c61ec1be8ef081108d29d2a (diff) | |
eventdev: add event pre-schedule hint
Add a new eventdev API to provide a hint to the eventdev PMD to
pre-schedule the next event into the event port, without releasing
the current flow context.
Event device that support this feature advertises the capability
using the RTE_EVENT_DEV_CAP_PRESCHEDULE_EXPLICIT capability flag.
Application can invoke `rte_event_port_preschedule` to hint the PMD,
if event device does not support this feature it is treated as a no-op.
Signed-off-by: Pavan Nikhilesh <[email protected]>
Acked-by: Jerin Jacob <[email protected]>
Diffstat (limited to 'lib/eventdev/version.map')
| -rw-r--r-- | lib/eventdev/version.map | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/eventdev/version.map b/lib/eventdev/version.map index b6d63ba576..42a5867aba 100644 --- a/lib/eventdev/version.map +++ b/lib/eventdev/version.map @@ -151,6 +151,8 @@ EXPERIMENTAL { # added in 24.11 rte_event_port_preschedule_modify; __rte_eventdev_trace_port_preschedule_modify; + rte_event_port_preschedule; + __rte_eventdev_trace_port_preschedule; }; INTERNAL { |
