odp icon indicating copy to clipboard operation
odp copied to clipboard

The ODP project is an open-source, cross-platform set of application programming interfaces (APIs) for the networking data plane

Results 76 odp issues
Sort by recently updated
recently updated
newest added

Currently we enforce that crypto capabilities retrieval functions always return same value for 'number of capability structures'. This helps one to use following code sequence easily: ```c int num_caps =...

platform/linux-generic/odp_fdserver.c forks a child process to manage shared memory. This is done to make shared memory work even if ODP threads are actually OS processes. The fork happens inside odp_init_global()...

Rework pkg-config files so that application can link libodp and libodphelper statically with pkg-config --static, without the -static linker option. Don't run test suites in installcheck. Instead build and run...

DPDK rte_lcore_state_t.WAIT exposed by odp-dpdk implementation conflicts with WAIT enum. Prefix all test internal enumerations to avoid conflicts. Signed-off-by: Matias Elo

A few small performance improvements to packet classifier. Branched from PR #1681.

Some improvements to the classifier example, mainly to enable performance testing.

This PR has the following patches: - api: crypto: clarify that input packet is fully copied to output packet - no functional changes but better description on the expected functionality...

Hi, Does those reassemble example code forget to remove ethernet padding ? https://github.com/OpenDataPlane/odp/blob/9a6fda2d55a02dd3e64371b77de04f512453a341/example/ipfragreass/odp_ipfragreass_reassemble.c#L482 The padding is filled while ethernet frame too small which < 64bytes. Then zero padding is extended....

Add new -C option for configuring packet transmit completion. Both poll and event completions are supported at least partially: event completion is currently supported only with scheduled queues. Transmit completion...