]> xenbits.xensource.com Git - people/ssmith/nc2-2.6.27.git/commitdiff
patch quiet-no-ufo
authorSteven Smith <ssmith@weybridge.uk.xensource.com>
Tue, 30 Jun 2009 11:55:48 +0000 (12:55 +0100)
committerSteven Smith <ssmith@weybridge.uk.xensource.com>
Tue, 30 Jun 2009 11:55:48 +0000 (12:55 +0100)
net/core/dev.c

index 0eca3f796b4ad8de2a2913aabc95867ab8d214bc..024d008fe168f9472ca286afb74cf8f2afac2eca 100644 (file)
@@ -4135,7 +4135,7 @@ int register_netdevice(struct net_device *dev)
        /* Fix illegal SG+CSUM combinations. */
        if ((dev->features & NETIF_F_SG) &&
            !(dev->features & NETIF_F_ALL_CSUM)) {
-               printk(KERN_NOTICE "%s: Dropping NETIF_F_SG since no checksum feature.\n",
+               printk(KERN_DEBUG "%s: Dropping NETIF_F_SG since no checksum feature.\n",
                       dev->name);
                dev->features &= ~NETIF_F_SG;
        }
@@ -4143,19 +4143,19 @@ int register_netdevice(struct net_device *dev)
        /* TSO requires that SG is present as well. */
        if ((dev->features & NETIF_F_TSO) &&
            !(dev->features & NETIF_F_SG)) {
-               printk(KERN_NOTICE "%s: Dropping NETIF_F_TSO since no SG feature.\n",
+               printk(KERN_DEBUG "%s: Dropping NETIF_F_TSO since no SG feature.\n",
                       dev->name);
                dev->features &= ~NETIF_F_TSO;
        }
        if (dev->features & NETIF_F_UFO) {
                if (!(dev->features & NETIF_F_GEN_CSUM)) {
-                       printk(KERN_ERR "%s: Dropping NETIF_F_UFO since no "
+                       printk(KERN_DEBUG "%s: Dropping NETIF_F_UFO since no "
                                        "NETIF_F_HW_CSUM feature.\n",
                                                        dev->name);
                        dev->features &= ~NETIF_F_UFO;
                }
                if (!(dev->features & NETIF_F_SG)) {
-                       printk(KERN_ERR "%s: Dropping NETIF_F_UFO since no "
+                       printk(KERN_DEBUG "%s: Dropping NETIF_F_UFO since no "
                                        "NETIF_F_SG feature.\n",
                                        dev->name);
                        dev->features &= ~NETIF_F_UFO;