]> git.karo-electronics.de Git - linux-beck.git/commitdiff
[NET]: Fix loopback crashes when multiqueue is enabled.
authorPatrick McHardy <kaber@trash.net>
Sat, 21 Jul 2007 02:45:45 +0000 (19:45 -0700)
committerDavid S. Miller <davem@davemloft.net>
Sat, 21 Jul 2007 02:45:45 +0000 (19:45 -0700)
From: Patrick McHardy <kaber@trash.net>

Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/netdevice.h
net/core/dev.c

index 9820ca1e45e251fde417743e4ee1ac98c65937d4..4a616d73cc259230ca43d542cd81ae60871599cd 100644 (file)
@@ -575,7 +575,7 @@ struct net_device
 
        /* The TX queue control structures */
        unsigned int                    egress_subqueue_count;
-       struct net_device_subqueue      egress_subqueue[0];
+       struct net_device_subqueue      egress_subqueue[1];
 };
 #define to_net_dev(d) container_of(d, struct net_device, dev)
 
index 38212c3f99715b173bb2c7b5f5fa49e9f49b6121..ee4035571c21b55e119bbf4c6c2f6f1a4ee085ab 100644 (file)
@@ -3624,7 +3624,7 @@ struct net_device *alloc_netdev_mq(int sizeof_priv, const char *name,
 
        /* ensure 32-byte alignment of both the device and private area */
        alloc_size = (sizeof(*dev) + NETDEV_ALIGN_CONST +
-                    (sizeof(struct net_device_subqueue) * queue_count)) &
+                    (sizeof(struct net_device_subqueue) * (queue_count - 1))) &
                     ~NETDEV_ALIGN_CONST;
        alloc_size += sizeof_priv + NETDEV_ALIGN_CONST;
 
@@ -3642,7 +3642,7 @@ struct net_device *alloc_netdev_mq(int sizeof_priv, const char *name,
                dev->priv = ((char *)dev +
                             ((sizeof(struct net_device) +
                               (sizeof(struct net_device_subqueue) *
-                               queue_count) + NETDEV_ALIGN_CONST)
+                               (queue_count - 1)) + NETDEV_ALIGN_CONST)
                              & ~NETDEV_ALIGN_CONST));
        }