summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCian Ferriter <cian.ferriter@intel.com>2021-08-13 16:41:07 +0100
committerIan Stokes <ian.stokes@intel.com>2021-08-16 14:59:38 +0100
commit96e513f557cf4ec255cd1e3bf9e95e0f1ea8b0f5 (patch)
tree845d9fc666344b23e2dfd3fce7597bd19022a874
parent3004ebf20faf028d3028a0a1f66b243fbc8a42ca (diff)
downloadopenvswitch-96e513f557cf4ec255cd1e3bf9e95e0f1ea8b0f5.tar.gz
dpif-netdev-unixctl.man: Document miniflow-parser-* CMDs
Document the "ovs-appctl dpif-netdev/miniflow-parser-get" and "ovs-appctl dpif-netdev/miniflow-parser-set" commands in the vswitchd manpage. Fixes: 3d8f47bc041a ("dpif-netdev: Add command line and function pointer for miniflow extract") Signed-off-by: Cian Ferriter <cian.ferriter@intel.com> Signed-off-by: Ian Stokes <ian.stokes@intel.com>
-rw-r--r--lib/dpif-netdev-unixctl.man11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/dpif-netdev-unixctl.man b/lib/dpif-netdev-unixctl.man
index e8d904437..607750bad 100644
--- a/lib/dpif-netdev-unixctl.man
+++ b/lib/dpif-netdev-unixctl.man
@@ -249,3 +249,14 @@ Lists the DPIF implementations that are available.
.
.IP "\fBdpif-netdev/dpif-impl-set\fR \fIdpif_impl\fR"
Sets the DPIF to be used to \fIdpif_impl\fR. By default "dpif_scalar" is used.
+.
+.IP "\fBdpif-netdev/miniflow-parser-get\fR
+Lists the miniflow extract implementations that are available.
+.
+.IP "\fBdpif-netdev/miniflow-parser-set\fR [\fB-pmd\fR \fIcore\fR] \
+\fIminiflow_impl\fR [\fIstudy_cnt\fR]"
+Sets the miniflow extract to \fIminiflow_impl\fR for a specified PMD or all
+PMDs in the case where no value is specified. By default "scalar" is used.
+\fIstudy_cnt\fR defaults to 128 and indicates the number of packets that the
+"study" miniflow implementation must parse before choosing an optimal
+implementation.