diff options
author | Patrick McHardy <kaber@trash.net> | 2007-07-20 19:45:45 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-07-20 19:45:45 -0700 |
commit | 31ce72a6b1c7635259cf522459539c0611f2c50c (patch) | |
tree | d8a20cc99b87822c56081b4bc2b4e9bf796a196a /include/linux | |
parent | fc7b93800b48324667e218a4b6b784b853cf4dd7 (diff) |
[NET]: Fix loopback crashes when multiqueue is enabled.
From: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/netdevice.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 9820ca1e45e..4a616d73cc2 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -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) |