|
@@ -55,6 +55,7 @@ enum {
|
|
NETIF_F_NOCACHE_COPY_BIT, /* Use no-cache copyfromuser */
|
|
NETIF_F_NOCACHE_COPY_BIT, /* Use no-cache copyfromuser */
|
|
NETIF_F_LOOPBACK_BIT, /* Enable loopback */
|
|
NETIF_F_LOOPBACK_BIT, /* Enable loopback */
|
|
NETIF_F_RXFCS_BIT, /* Append FCS to skb pkt data */
|
|
NETIF_F_RXFCS_BIT, /* Append FCS to skb pkt data */
|
|
|
|
+ NETIF_F_RXALL_BIT, /* Receive errored frames too */
|
|
|
|
|
|
/*
|
|
/*
|
|
* Add your fresh new feature above and remember to update
|
|
* Add your fresh new feature above and remember to update
|
|
@@ -100,6 +101,7 @@ enum {
|
|
#define NETIF_F_UFO __NETIF_F(UFO)
|
|
#define NETIF_F_UFO __NETIF_F(UFO)
|
|
#define NETIF_F_VLAN_CHALLENGED __NETIF_F(VLAN_CHALLENGED)
|
|
#define NETIF_F_VLAN_CHALLENGED __NETIF_F(VLAN_CHALLENGED)
|
|
#define NETIF_F_RXFCS __NETIF_F(RXFCS)
|
|
#define NETIF_F_RXFCS __NETIF_F(RXFCS)
|
|
|
|
+#define NETIF_F_RXALL __NETIF_F(RXALL)
|
|
|
|
|
|
/* Features valid for ethtool to change */
|
|
/* Features valid for ethtool to change */
|
|
/* = all defined minus driver/device-class-related */
|
|
/* = all defined minus driver/device-class-related */
|