DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH 0/2] ring: allow to init a rte_ring outside of an rte_memzone
@ 2014-05-07 11:38 Olivier Matz
  2014-05-07 11:38 ` [dpdk-dev] [PATCH 1/2] ring: introduce rte_ring_get_memsize() Olivier Matz
  2014-05-07 11:38 ` [dpdk-dev] [PATCH 2/2] ring: introduce rte_ring_init() Olivier Matz
  0 siblings, 2 replies; 5+ messages in thread
From: Olivier Matz @ 2014-05-07 11:38 UTC (permalink / raw)
  To: dev

These 2 patches adds 2 new functions that permits to initialize and use
a rte_ring anywhere in memory.

Before this patches, only rte_ring_create() was available. This function
allocates a rte_memzone (that cannot be freed) and initializes a ring
inside.

This series allows to do the following:
  size = rte_ring_get_memsize(1024);
  r = malloc(size);
  rte_ring_init(r, "my_ring", 1024, 0);


Olivier Matz (2):
  ring: introduce rte_ring_get_memsize()
  ring: introduce rte_ring_init()

 lib/librte_ring/rte_ring.c | 88 +++++++++++++++++++++++++++++-----------------
 lib/librte_ring/rte_ring.h | 67 ++++++++++++++++++++++++++++++++---
 2 files changed, 118 insertions(+), 37 deletions(-)

-- 
1.9.2

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-05-07 13:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-07 11:38 [dpdk-dev] [PATCH 0/2] ring: allow to init a rte_ring outside of an rte_memzone Olivier Matz
2014-05-07 11:38 ` [dpdk-dev] [PATCH 1/2] ring: introduce rte_ring_get_memsize() Olivier Matz
2014-05-07 12:35   ` Ananyev, Konstantin
2014-05-07 13:04     ` Olivier MATZ
2014-05-07 11:38 ` [dpdk-dev] [PATCH 2/2] ring: introduce rte_ring_init() Olivier Matz

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).