DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] doc/mlx5: update mlx5 guide
@ 2020-02-24 17:57 Viacheslav Ovsiienko
  2020-02-25 13:19 ` Thomas Monjalon
  0 siblings, 1 reply; 2+ messages in thread
From: Viacheslav Ovsiienko @ 2020-02-24 17:57 UTC (permalink / raw)
  To: dev

- metadata limitation is described
- no inline hint flag is described

Signed-off-by: Viacheslav Ovsiienko <viacheslavo@mellanox.com>
---
 doc/guides/nics/mlx5.rst | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/doc/guides/nics/mlx5.rst b/doc/guides/nics/mlx5.rst
index dd2fbde..2542248 100644
--- a/doc/guides/nics/mlx5.rst
+++ b/doc/guides/nics/mlx5.rst
@@ -96,6 +96,8 @@ Features
   increment/decrement, count, drop, mark. For details please see :ref:`mlx5_offloads_support`.
 - Flow insertion rate of more then million flows per second, when using Direct Rules.
 - Support for multiple rte_flow groups.
+- per packet no_inline hint flag to disable packet data copying into Tx
+  descriptors.
 - Hardware LRO.
 
 Limitations
@@ -162,6 +164,9 @@ Limitations
      - msg_type
      - teid
 
+- No Tx metadata go to the E-Switch steering domain for the Flow group 0.
+  The flows within group 0 and set metadata action are rejected by hardware.
+
 .. note::
 
    MAC addresses not already present in the bridge table of the associated
@@ -185,6 +190,33 @@ Limitations
   To receive IPv6 Multicast messages on VM, explicitly set the relevant
   MAC address using rte_eth_dev_mac_addr_add() API.
 
+- to support a mixed traffic pattern (some buffers from local host memory, some
+  buffers from other devices) with high bandwidth, a hint flag is introduced in
+  the mbuf.
+
+  An application hints the PMD whether or not it should try to inline the
+  given mbuf data buffer. PMD should do the best effort to act upon this request.
+
+  The hint flag RTE_NET_MLX5_DYNFLAG_NO_INLINE_NAME is supposed to be dynamic,
+  registered by application with rte_mbuf_dynflag_register(). This flag is
+  purely vendor specific and declared in PMD specific header rte_pmd_mlx5.h,
+  which is intended to be used by specific application.
+
+  To query the supported specific flags in runtime the private routine is
+  introduced: rte_pmd_mlx5_get_dyn_flag_names. It returns the array of currently
+  (over present hardware and configuration)supported specific flags.
+  The "not inline hint" feature operating flow is the following one:
+    - application start
+    - probe the devices, ports are created
+    - query the port capabilities
+    - if port supporting the feature is found
+    - register dynamic flag RTE_NET_MLX5_DYNFLAG_NO_INLINE_NAME
+    - application starts the ports
+    - on dev_start() PMD checks whether the feature flag is registered and
+      enables the feature support in datapath
+    - application might set this flag in ol_flags field of mbuf in the
+      packets being sent and PMD will handle ones appropriately.
+
 - The amount of descriptors in Tx queue may be limited by data inline settings.
   Inline data require the more descriptor building blocks and overall block
   amount may exceed the hardware supported limits. The application should
-- 
1.8.3.1


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

* Re: [dpdk-dev] [PATCH] doc/mlx5: update mlx5 guide
  2020-02-24 17:57 [dpdk-dev] [PATCH] doc/mlx5: update mlx5 guide Viacheslav Ovsiienko
@ 2020-02-25 13:19 ` Thomas Monjalon
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Monjalon @ 2020-02-25 13:19 UTC (permalink / raw)
  To: Viacheslav Ovsiienko; +Cc: dev

24/02/2020 18:57, Viacheslav Ovsiienko:
> - metadata limitation is described
> - no inline hint flag is described
> 
> Signed-off-by: Viacheslav Ovsiienko <viacheslavo@mellanox.com>
> ---

Split in 2 patches and applied, thanks




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

end of thread, other threads:[~2020-02-25 13:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-24 17:57 [dpdk-dev] [PATCH] doc/mlx5: update mlx5 guide Viacheslav Ovsiienko
2020-02-25 13:19 ` Thomas Monjalon

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