Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ce8e5c70 authored by Rasmus Villemoes's avatar Rasmus Villemoes Committed by David S. Miller
Browse files

net: cavium: liquidio: use kzalloc in setup_glist()



We save a little .text and get rid of the sizeof(...) style
inconsistency.

Signed-off-by: default avatarRasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f53de1e9
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -818,10 +818,9 @@ static int setup_glist(struct lio *lio)
	INIT_LIST_HEAD(&lio->glist);

	for (i = 0; i < lio->tx_qsize; i++) {
		g = kmalloc(sizeof(*g), GFP_KERNEL);
		g = kzalloc(sizeof(*g), GFP_KERNEL);
		if (!g)
			break;
		memset(g, 0, sizeof(struct octnic_gather));

		g->sg_size =
			((ROUNDUP4(OCTNIC_MAX_SG) >> 2) * OCT_SG_ENTRY_SIZE);