Remove extra space in "rte_malloc ()" function name reference. Signed-off-by: Stephen Hemminger <[email protected]> --- doc/guides/prog_guide/writing_efficient_code.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/guides/prog_guide/writing_efficient_code.rst b/doc/guides/prog_guide/writing_efficient_code.rst index b63fa8e459..6fbdb57fa8 100644 --- a/doc/guides/prog_guide/writing_efficient_code.rst +++ b/doc/guides/prog_guide/writing_efficient_code.rst @@ -41,7 +41,7 @@ If you really need dynamic allocation in the data plane, it is better to use a m This API is provided by librte_mempool. This data structure provides several services that increase performance, such as memory alignment of objects, lockless access to objects, NUMA awareness, bulk get/put and per-lcore cache. -The rte_malloc () function uses a similar concept to mempools. +The rte_malloc() function uses a similar concept to mempools. Concurrent Access to the Same Memory Area ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -- 2.51.0

