net: bcmgenet: Turn on offloads by default
We can turn on the RX/TX checksum offloads and the scatter/gather features by default and make sure that those are properly reflected back to e.g: stacked devices such as VLAN. Signed-off-by: Doug Berger <opendmb@gmail.com> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
206f54b66c
commit
ae895c4990
|
@ -3530,9 +3530,11 @@ static int bcmgenet_probe(struct platform_device *pdev)
|
|||
|
||||
priv->msg_enable = netif_msg_init(-1, GENET_MSG_DEFAULT);
|
||||
|
||||
/* Set hardware features */
|
||||
dev->hw_features |= NETIF_F_SG | NETIF_F_HIGHDMA | NETIF_F_HW_CSUM |
|
||||
NETIF_F_RXCSUM;
|
||||
/* Set default features */
|
||||
dev->features |= NETIF_F_SG | NETIF_F_HIGHDMA | NETIF_F_HW_CSUM |
|
||||
NETIF_F_RXCSUM;
|
||||
dev->hw_features |= dev->features;
|
||||
dev->vlan_features |= dev->features;
|
||||
|
||||
/* Request the WOL interrupt and advertise suspend if available */
|
||||
priv->wol_irq_disabled = true;
|
||||
|
|
Loading…
Reference in New Issue