]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
net: enable driver support for netmem TX
authorMina Almasry <almasrymina@google.com>
Thu, 8 May 2025 00:48:26 +0000 (00:48 +0000)
committerPaolo Abeni <pabeni@redhat.com>
Tue, 13 May 2025 09:12:49 +0000 (11:12 +0200)
Drivers need to make sure not to pass netmem dma-addrs to the
dma-mapping API in order to support netmem TX.

Add helpers and netmem_dma_*() helpers that enables special handling of
netmem dma-addrs that drivers can use.

Document in netmem.rst what drivers need to do to support netmem TX.

Signed-off-by: Mina Almasry <almasrymina@google.com>
Acked-by: Stanislav Fomichev <sdf@fomichev.me>
Link: https://patch.msgid.link/20250508004830.4100853-7-almasrymina@google.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Documentation/networking/net_cachelines/net_device.rst
Documentation/networking/netdev-features.rst
Documentation/networking/netmem.rst
include/linux/netdevice.h
include/net/netmem.h

index ca8605eb82ffc084b8974a326492d18c30c452bb..c69cc89c958e01ea46e0727db6c0991b62279ab7 100644 (file)
@@ -10,6 +10,7 @@ Type                                Name                        fastpath_tx_acce
 =================================== =========================== =================== =================== ===================================================================================
 unsigned_long:32                    priv_flags                  read_mostly                             __dev_queue_xmit(tx)
 unsigned_long:1                     lltx                        read_mostly                             HARD_TX_LOCK,HARD_TX_TRYLOCK,HARD_TX_UNLOCK(tx)
+unsigned long:1                     netmem_tx:1;                read_mostly
 char                                name[16]
 struct netdev_name_node*            name_node
 struct dev_ifalias*                 ifalias
index 5014f7cc1398baf195f06a14026609b38ee359c2..02bd7536fc0ca2bd5050047f810c8b3662f5f1a1 100644 (file)
@@ -188,3 +188,8 @@ Redundancy) frames from one port to another in hardware.
 This should be set for devices which duplicate outgoing HSR (High-availability
 Seamless Redundancy) or PRP (Parallel Redundancy Protocol) tags automatically
 frames in hardware.
+
+* netmem-tx
+
+This should be set for devices which support netmem TX. See
+Documentation/networking/netmem.rst
index 7de21ddb54129f4699f1af6986f587a0df431b47..b63aded4633707116d2c3402f5cd4eba07b67f02 100644 (file)
@@ -19,8 +19,8 @@ Benefits of Netmem :
 * Simplified Development: Drivers interact with a consistent API,
   regardless of the underlying memory implementation.
 
-Driver Requirements
-===================
+Driver RX Requirements
+======================
 
 1. The driver must support page_pool.
 
@@ -77,3 +77,22 @@ Driver Requirements
    that purpose, but be mindful that some netmem types might have longer
    circulation times, such as when userspace holds a reference in zerocopy
    scenarios.
+
+Driver TX Requirements
+======================
+
+1. The Driver must not pass the netmem dma_addr to any of the dma-mapping APIs
+   directly. This is because netmem dma_addrs may come from a source like
+   dma-buf that is not compatible with the dma-mapping APIs.
+
+   Helpers like netmem_dma_unmap_page_attrs() & netmem_dma_unmap_addr_set()
+   should be used in lieu of dma_unmap_page[_attrs](), dma_unmap_addr_set().
+   The netmem variants will handle netmem dma_addrs correctly regardless of the
+   source, delegating to the dma-mapping APIs when appropriate.
+
+   Not all dma-mapping APIs have netmem equivalents at the moment. If your
+   driver relies on a missing netmem API, feel free to add and propose to
+   netdev@, or reach out to the maintainers and/or almasrymina@google.com for
+   help adding the netmem API.
+
+2. Driver should declare support by setting `netdev->netmem_tx = true`
index 773167508c825cef0892123ce116b65c317d8f52..32a1e41636a9fea4c00ba85f48d653faa0aaa21b 100644 (file)
@@ -1772,6 +1772,7 @@ enum netdev_reg_state {
  *     @lltx:          device supports lockless Tx. Deprecated for real HW
  *                     drivers. Mainly used by logical interfaces, such as
  *                     bonding and tunnels
+ *     @netmem_tx:     device support netmem_tx.
  *
  *     @name:  This is the first field of the "visible" part of this structure
  *             (i.e. as seen by users in the "Space.c" file).  It is the name
@@ -2087,6 +2088,7 @@ struct net_device {
        struct_group(priv_flags_fast,
                unsigned long           priv_flags:32;
                unsigned long           lltx:1;
+               unsigned long           netmem_tx:1;
        );
        const struct net_device_ops *netdev_ops;
        const struct header_ops *header_ops;
index ecb6b29c93f61d45a700587eb379f8d17ddcef62..386164fb9c185764e449fb2acbe8577a4f025d43 100644 (file)
@@ -8,6 +8,7 @@
 #ifndef _NET_NETMEM_H
 #define _NET_NETMEM_H
 
+#include <linux/dma-mapping.h>
 #include <linux/mm.h>
 #include <net/net_debug.h>
 
@@ -276,4 +277,23 @@ static inline unsigned long netmem_get_dma_addr(netmem_ref netmem)
 void get_netmem(netmem_ref netmem);
 void put_netmem(netmem_ref netmem);
 
+#define netmem_dma_unmap_addr_set(NETMEM, PTR, ADDR_NAME, VAL)   \
+       do {                                                     \
+               if (!netmem_is_net_iov(NETMEM))                  \
+                       dma_unmap_addr_set(PTR, ADDR_NAME, VAL); \
+               else                                             \
+                       dma_unmap_addr_set(PTR, ADDR_NAME, 0);   \
+       } while (0)
+
+static inline void netmem_dma_unmap_page_attrs(struct device *dev,
+                                              dma_addr_t addr, size_t size,
+                                              enum dma_data_direction dir,
+                                              unsigned long attrs)
+{
+       if (!addr)
+               return;
+
+       dma_unmap_page_attrs(dev, addr, size, dir, attrs);
+}
+
 #endif /* _NET_NETMEM_H */