diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/core/dev.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index 77530e9a34fc..c16a07fde388 100644 --- a/net/core/dev.c +++ b/net/core/dev.c | |||
@@ -4000,7 +4000,8 @@ struct net_device *alloc_netdev_mq(int sizeof_priv, const char *name, | |||
4000 | alloc_size = (sizeof(*dev) + NETDEV_ALIGN_CONST + | 4000 | alloc_size = (sizeof(*dev) + NETDEV_ALIGN_CONST + |
4001 | (sizeof(struct net_device_subqueue) * (queue_count - 1))) & | 4001 | (sizeof(struct net_device_subqueue) * (queue_count - 1))) & |
4002 | ~NETDEV_ALIGN_CONST; | 4002 | ~NETDEV_ALIGN_CONST; |
4003 | alloc_size += sizeof_priv + NETDEV_ALIGN_CONST; | 4003 | if (sizeof_priv) |
4004 | alloc_size += sizeof_priv + NETDEV_ALIGN_CONST; | ||
4004 | 4005 | ||
4005 | p = kzalloc(alloc_size, GFP_KERNEL); | 4006 | p = kzalloc(alloc_size, GFP_KERNEL); |
4006 | if (!p) { | 4007 | if (!p) { |