diff options
| author | Michael Brown | 2012-08-31 02:48:49 +0200 |
|---|---|---|
| committer | Michael Brown | 2012-08-31 22:22:58 +0200 |
| commit | f54a61e43450fae7d045bebabc4c368d325e71d3 (patch) | |
| tree | 4da3e1ff7629e7d06b7a62a9fce592a5baeee794 /src/drivers/net | |
| parent | [infiniband] Use explicit "source" and "dest" address vector parameter names (diff) | |
| download | ipxe-f54a61e43450fae7d045bebabc4c368d325e71d3.tar.gz ipxe-f54a61e43450fae7d045bebabc4c368d325e71d3.tar.xz ipxe-f54a61e43450fae7d045bebabc4c368d325e71d3.zip | |
[infiniband] Include destination address vector in ib_complete_recv()
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/drivers/net')
| -rw-r--r-- | src/drivers/net/ipoib.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/drivers/net/ipoib.c b/src/drivers/net/ipoib.c index bbc9425a6..41ba348bf 100644 --- a/src/drivers/net/ipoib.c +++ b/src/drivers/net/ipoib.c @@ -480,12 +480,14 @@ static void ipoib_complete_send ( struct ib_device *ibdev __unused, * * @v ibdev Infiniband device * @v qp Queue pair + * @v dest Destination address vector, or NULL * @v source Source address vector, or NULL * @v iobuf I/O buffer * @v rc Completion status code */ static void ipoib_complete_recv ( struct ib_device *ibdev __unused, struct ib_queue_pair *qp, + struct ib_address_vector *dest __unused, struct ib_address_vector *source, struct io_buffer *iobuf, int rc ) { struct ipoib_device *ipoib = ib_qp_get_ownerdata ( qp ); |
