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

Commit c30bf8ce authored by Gustavo A R Silva's avatar Gustavo A R Silva Committed by Jeff Kirsher
Browse files

i40e/virtchnl: fix application of sizeof to pointer



sizeof when applied to a pointer typed expression gives the size of
the pointer.

The proper fix in this particular case is to code sizeof(*vfres)
instead of sizeof(vfres).

This issue was detected with the help of Coccinelle.

Signed-off-by: default avatarGustavo A R Silva <garsilva@embeddedor.com>
Tested-by: default avatarAndrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent d3fe1e01
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -2086,7 +2086,7 @@ static int i40e_vc_request_queues_msg(struct i40e_vf *vf, u8 *msg, int msglen)
	}
	}


	return i40e_vc_send_msg_to_vf(vf, VIRTCHNL_OP_REQUEST_QUEUES, 0,
	return i40e_vc_send_msg_to_vf(vf, VIRTCHNL_OP_REQUEST_QUEUES, 0,
				      (u8 *)vfres, sizeof(vfres));
				      (u8 *)vfres, sizeof(*vfres));
}
}


/**
/**