Date: Mon, 14 Feb 2022 00:23:22 GMT From: "Bjoern A. Zeeb" <bz@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 85d61bd872a0 - main - LinuxKPI: add NETIF_F_HW_CSUM to netdev_features.h Message-ID: <202202140023.21E0NM9Y083499@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by bz: URL: https://cgit.FreeBSD.org/src/commit/?id=85d61bd872a0d91173d6cc8dc5bb2c927a5a4302 commit 85d61bd872a0d91173d6cc8dc5bb2c927a5a4302 Author: Bjoern A. Zeeb <bz@FreeBSD.org> AuthorDate: 2022-02-09 12:05:13 +0000 Commit: Bjoern A. Zeeb <bz@FreeBSD.org> CommitDate: 2022-02-14 00:22:24 +0000 LinuxKPI: add NETIF_F_HW_CSUM to netdev_features.h Add NETIF_F_HW_CSUM to netdev_features.h as needed by a driver. MFC after: 3 days Reviewed by: hselasky Differential Revision: https://reviews.freebsd.org/D34233 --- sys/compat/linuxkpi/common/include/linux/netdev_features.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/compat/linuxkpi/common/include/linux/netdev_features.h b/sys/compat/linuxkpi/common/include/linux/netdev_features.h index f8442a7e1c0c..e21d1965bec6 100644 --- a/sys/compat/linuxkpi/common/include/linux/netdev_features.h +++ b/sys/compat/linuxkpi/common/include/linux/netdev_features.h @@ -42,6 +42,7 @@ typedef uint32_t netdev_features_t; #define NETIF_F_TSO BIT(4) #define NETIF_F_TSO6 BIT(5) #define NETIF_F_RXCSUM BIT(6) +#define NETIF_F_HW_CSUM BIT(7) #define NETIF_F_CSUM_MASK (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202202140023.21E0NM9Y083499>