Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts were easy to resolve using immediate context mostly, except the cls_u32.c one where I simply too the entire HEAD chunk. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -318,7 +318,7 @@ int mt76u_buf_alloc(struct mt76_dev *dev, struct mt76u_buf *buf,
|
||||
if (!buf->urb)
|
||||
return -ENOMEM;
|
||||
|
||||
buf->urb->sg = devm_kzalloc(dev->dev, nsgs * sizeof(*buf->urb->sg),
|
||||
buf->urb->sg = devm_kcalloc(dev->dev, nsgs, sizeof(*buf->urb->sg),
|
||||
gfp);
|
||||
if (!buf->urb->sg)
|
||||
return -ENOMEM;
|
||||
@@ -525,8 +525,8 @@ static int mt76u_alloc_rx(struct mt76_dev *dev)
|
||||
|
||||
spin_lock_init(&q->rx_page_lock);
|
||||
spin_lock_init(&q->lock);
|
||||
q->entry = devm_kzalloc(dev->dev,
|
||||
MT_NUM_RX_ENTRIES * sizeof(*q->entry),
|
||||
q->entry = devm_kcalloc(dev->dev,
|
||||
MT_NUM_RX_ENTRIES, sizeof(*q->entry),
|
||||
GFP_KERNEL);
|
||||
if (!q->entry)
|
||||
return -ENOMEM;
|
||||
@@ -755,8 +755,8 @@ static int mt76u_alloc_tx(struct mt76_dev *dev)
|
||||
INIT_LIST_HEAD(&q->swq);
|
||||
q->hw_idx = mt76_ac_to_hwq(i);
|
||||
|
||||
q->entry = devm_kzalloc(dev->dev,
|
||||
MT_NUM_TX_ENTRIES * sizeof(*q->entry),
|
||||
q->entry = devm_kcalloc(dev->dev,
|
||||
MT_NUM_TX_ENTRIES, sizeof(*q->entry),
|
||||
GFP_KERNEL);
|
||||
if (!q->entry)
|
||||
return -ENOMEM;
|
||||
|
Reference in New Issue
Block a user