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
This commit is contained in:
Bjoern A. Zeeb 2022-02-09 12:05:13 +00:00
parent c840d5cec2
commit 85d61bd872

View File

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