Commit 33deb13c authored by Rasmus Villemoes's avatar Rasmus Villemoes Committed by Jakub Kicinski
Browse files

ethernet: ucc_geth: replace kmalloc_array()+for loop by kcalloc()

parent 64a99fe5
Loading
Loading
Loading
Loading
+4 −10
Original line number Diff line number Diff line
@@ -2203,7 +2203,7 @@ static int ucc_geth_alloc_tx(struct ucc_geth_private *ugeth)
	for (j = 0; j < ug_info->numQueuesTx; j++) {
		/* Setup the skbuff rings */
		ugeth->tx_skbuff[j] =
			kmalloc_array(ugeth->ug_info->bdRingLenTx[j],
			kcalloc(ugeth->ug_info->bdRingLenTx[j],
				sizeof(struct sk_buff *), GFP_KERNEL);

		if (ugeth->tx_skbuff[j] == NULL) {
@@ -2212,9 +2212,6 @@ static int ucc_geth_alloc_tx(struct ucc_geth_private *ugeth)
			return -ENOMEM;
		}

		for (i = 0; i < ugeth->ug_info->bdRingLenTx[j]; i++)
			ugeth->tx_skbuff[j][i] = NULL;

		ugeth->skb_curtx[j] = ugeth->skb_dirtytx[j] = 0;
		bd = ugeth->confBd[j] = ugeth->txBd[j] = ugeth->p_tx_bd_ring[j];
		for (i = 0; i < ug_info->bdRingLenTx[j]; i++) {
@@ -2266,7 +2263,7 @@ static int ucc_geth_alloc_rx(struct ucc_geth_private *ugeth)
	for (j = 0; j < ug_info->numQueuesRx; j++) {
		/* Setup the skbuff rings */
		ugeth->rx_skbuff[j] =
			kmalloc_array(ugeth->ug_info->bdRingLenRx[j],
			kcalloc(ugeth->ug_info->bdRingLenRx[j],
				sizeof(struct sk_buff *), GFP_KERNEL);

		if (ugeth->rx_skbuff[j] == NULL) {
@@ -2275,9 +2272,6 @@ static int ucc_geth_alloc_rx(struct ucc_geth_private *ugeth)
			return -ENOMEM;
		}

		for (i = 0; i < ugeth->ug_info->bdRingLenRx[j]; i++)
			ugeth->rx_skbuff[j][i] = NULL;

		ugeth->skb_currx[j] = 0;
		bd = ugeth->rxBd[j] = ugeth->p_rx_bd_ring[j];
		for (i = 0; i < ug_info->bdRingLenRx[j]; i++) {