@@ -43,6 +43,7 @@ Post-v3.4.0
* Add support for DPDK 24.11.1.
* Add hardware offload support for matching ICMPv6 protocol
(experimental).
+ * New debug appctl command 'dpdk/get-memzone-stats'.
- Tunnels:
* LISP and STT tunnel port types are deprecated and will be removed in
the next release.
@@ -15,5 +15,7 @@ components (see \fBdpdk/log-list\fR command on \fBovs\-appctl\fR(8)) separated
by a colon from the logging \fBlevel\fR to apply.
.IP "\fBdpdk/get-malloc-stats\fR"
Prints the heap information statistics about DPDK malloc.
+.IP "\fBdpdk/get-memzone-stats\fR"
+Prints the reserved memory zones from DPDK.
.RE
.
@@ -437,6 +437,8 @@ dpdk_init__(const struct smap *ovs_other_config)
unixctl_command_register("dpdk/get-malloc-stats", "", 0, 0,
dpdk_unixctl_mem_stream,
malloc_dump_stats_wrapper);
+ unixctl_command_register("dpdk/get-memzone-stats", "", 0, 0,
+ dpdk_unixctl_mem_stream, rte_memzone_dump);
/* We are called from the main thread here */
RTE_PER_LCORE(_lcore_id) = NON_PMD_CORE_ID;