[dpdk-dev] using rte_malloc() in a secondary process.

2014-06-10 Thread Uri Sidler
Hi, I have 2 processes without fork(). can the secondary process use rte_malloc()? is there a limitation for using rte_malloc on a secondary process? do I have to allocate a memzone in order to use the rte_malloc()? Thanks.

[dpdk-dev] sharing rte_malloc() address between processes.

2014-06-10 Thread Uri Sidler
How can I share the addresses between processes? Is there a simple way of doing so? thanks, Shirley.

[dpdk-dev] using hash table in a MP environment

2014-06-10 Thread Uri Sidler
Hi, I am currently using a hash table in a multi-process environment. the master process creates the hash table which is later used by other secondary processes. but the secondary processes fail to use the hash table since the hash function address actually points to a different fucntion. (this mak