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

Commit ba9bb431 authored by Thomas Jarosch's avatar Thomas Jarosch Committed by David S. Miller
Browse files

iseries_veth: Fix wrong parameter given to sizeof call



"remote_list" is of type

struct dma_chunk remote_list[VETH_MAX_FRAMES_PER_MSG];

Probably a copy'n'paste error.

Signed-off-by: default avatarThomas Jarosch <thomas.jarosch@intra2net.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6fe4c6d4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1421,7 +1421,7 @@ static void veth_receive(struct veth_lpar_connection *cnx,

		/* FIXME: do we need this? */
		memset(local_list, 0, sizeof(local_list));
		memset(remote_list, 0, sizeof(VETH_MAX_FRAMES_PER_MSG));
		memset(remote_list, 0, sizeof(remote_list));

		/* a 0 address marks the end of the valid entries */
		if (senddata->addr[startchunk] == 0)