mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-19 08:05:27 +08:00
e100: Fix ring parameter change handling regression.
When the PCI pool changes were added to fix resume failures: commit98468efddb
e100: Use pci pool to work around GFP_ATOMIC order 5 memory allocation failu and commit70abc8cb90
e100: Fix broken cbs accounting due to missing memset. This introduced a problem that can happen if the TX ring size is increased. We need to size the PCI pool using cbs->max instead of the default cbs->count value. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
bec68ff163
commit
211a0d941b
@ -2858,7 +2858,7 @@ static int __devinit e100_probe(struct pci_dev *pdev,
|
||||
}
|
||||
nic->cbs_pool = pci_pool_create(netdev->name,
|
||||
nic->pdev,
|
||||
nic->params.cbs.count * sizeof(struct cb),
|
||||
nic->params.cbs.max * sizeof(struct cb),
|
||||
sizeof(u32),
|
||||
0);
|
||||
DPRINTK(PROBE, INFO, "addr 0x%llx, irq %d, MAC addr %pM\n",
|
||||
|
Loading…
Reference in New Issue
Block a user