From: David S. Miller Date: Wed, 21 Apr 2010 01:44:52 +0000 (-0700) Subject: niu: Enable GRO by default. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e4fc9d15db72c8de7d4988e9f419b63b923e1d1d;p=linux-beck.git niu: Enable GRO by default. This was merely an oversight when I added the napi_gro_receive() calls. Signed-off-by: David S. Miller --- diff --git a/drivers/net/niu.c b/drivers/net/niu.c index ef940226ee22..493e25cf1014 100644 --- a/drivers/net/niu.c +++ b/drivers/net/niu.c @@ -9838,7 +9838,7 @@ static int __devinit niu_pci_init_one(struct pci_dev *pdev, } } - dev->features |= (NETIF_F_SG | NETIF_F_HW_CSUM); + dev->features |= (NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_GRO); np->regs = pci_ioremap_bar(pdev, 0); if (!np->regs) {