]> xenbits.xen.org Git - xenclient/kernel.git/commitdiff
imported patch quiet-no-ufo promisc-bridging
authort_jeang <devnull@localhost>
Tue, 6 Jan 2009 12:06:05 +0000 (12:06 +0000)
committert_jeang <devnull@localhost>
Tue, 6 Jan 2009 12:06:05 +0000 (12:06 +0000)
net/core/dev.c

index dc3042096dc1c694854c618880f7f6631c3e5b3f..4110f7cdac6d1d67bf86c4f3fb25f392dfc40fe1 100644 (file)
@@ -3023,7 +3023,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;
        }
@@ -3031,19 +3031,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_HW_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;