numam-dpdk/lib/librte_mbuf
Olivier Matz 4958ca3a44 mbuf: support dynamic fields and flags
Many features require to store data inside the mbuf. As the room in mbuf
structure is limited, it is not possible to have a field for each
feature. Also, changing fields in the mbuf structure can break the API
or ABI.

This commit addresses these issues, by enabling the dynamic registration
of fields or flags:

- a dynamic field is a named area in the rte_mbuf structure, with a
  given size (>= 1 byte) and alignment constraint.
- a dynamic flag is a named bit in the rte_mbuf structure.

The typical use case is a PMD that registers space for an offload
feature, when the application requests to enable this feature.  As
the space in mbuf is limited, the space should only be reserved if it
is going to be used (i.e when the application explicitly asks for it).

The registration can be done at any moment, but it is not possible
to unregister fields or flags.

Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
Acked-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
2019-10-26 19:08:50 +02:00
..
Makefile mbuf: support dynamic fields and flags 2019-10-26 19:08:50 +02:00
meson.build mbuf: support dynamic fields and flags 2019-10-26 19:08:50 +02:00
rte_mbuf_core.h mbuf: support dynamic fields and flags 2019-10-26 19:08:50 +02:00
rte_mbuf_dyn.c mbuf: support dynamic fields and flags 2019-10-26 19:08:50 +02:00
rte_mbuf_dyn.h mbuf: support dynamic fields and flags 2019-10-26 19:08:50 +02:00
rte_mbuf_pool_ops.c mbuf: remove experimental tag from pool ops 2018-07-26 23:37:08 +02:00
rte_mbuf_pool_ops.h mbuf: remove experimental tag from pool ops 2018-07-26 23:37:08 +02:00
rte_mbuf_ptype.c mbuf: add IGMP packet type 2018-10-25 15:51:16 +02:00
rte_mbuf_ptype.h doc: fix spelling reported by aspell in comments 2019-05-03 00:38:14 +02:00
rte_mbuf_version.map mbuf: support dynamic fields and flags 2019-10-26 19:08:50 +02:00
rte_mbuf.c mbuf: add GTP tunnel type 2019-10-23 16:43:10 +02:00
rte_mbuf.h mbuf: support dynamic fields and flags 2019-10-26 19:08:50 +02:00