1 --- linux-2.6.23.orig/net/core/dev.c 2007-10-12 23:42:06.000000000 +0200
2 +++ linux-2.6.23/net/core/dev.c 2007-10-12 23:44:22.000000000 +0200
4 /* Fix illegal SG+CSUM combinations. */
5 if ((dev->features & NETIF_F_SG) &&
6 !(dev->features & NETIF_F_ALL_CSUM)) {
7 - printk(KERN_NOTICE "%s: Dropping NETIF_F_SG since no checksum feature.\n",
9 + //printk(KERN_NOTICE "%s: Dropping NETIF_F_SG since no checksum feature.\n",
11 dev->features &= ~NETIF_F_SG;
16 if (dev->features & NETIF_F_UFO) {
17 if (!(dev->features & NETIF_F_HW_CSUM)) {
18 - printk(KERN_ERR "%s: Dropping NETIF_F_UFO since no "
19 - "NETIF_F_HW_CSUM feature.\n",
21 + //printk(KERN_ERR "%s: Dropping NETIF_F_UFO since no "
22 + // "NETIF_F_HW_CSUM feature.\n",
24 dev->features &= ~NETIF_F_UFO;
26 if (!(dev->features & NETIF_F_SG)) {