diff options
author | Michael Brown <mcb30@etherboot.org> | 2009-07-17 22:50:33 +0100 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2009-07-17 23:06:33 +0100 |
commit | 1f5c0239b4fc5dea895645397d5aaa3d4b95205a (patch) | |
tree | 0f4f5f50363702b601f3a7b966bc12a2a6797a22 /src/net/infiniband.c | |
parent | 7ba33f78263ba17633cf6c264e99b4a4140abfcb (diff) | |
download | ipxe-1f5c0239b4fc5dea895645397d5aaa3d4b95205a.tar.gz |
[infiniband] Centralise assumption of 2048-byte payloads
IPoIB and the SMA have separate constants for the packet size to be
used to I/O buffer allocations. Merge these into the single
IB_MAX_PAYLOAD_SIZE constant.
(Various other points in the Infiniband stack have hard-coded
assumptions of a 2048-byte payload; we don't currently support
variable MTUs.)
Diffstat (limited to 'src/net/infiniband.c')
-rw-r--r-- | src/net/infiniband.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/net/infiniband.c b/src/net/infiniband.c index 1c19fada..4784f404 100644 --- a/src/net/infiniband.c +++ b/src/net/infiniband.c @@ -345,6 +345,13 @@ int ib_post_recv ( struct ib_device *ibdev, struct ib_queue_pair *qp, struct io_buffer *iobuf ) { int rc; + /* Check packet length */ + if ( iob_tailroom ( iobuf ) < IB_MAX_PAYLOAD_SIZE ) { + DBGC ( ibdev, "IBDEV %p QPN %#lx wrong RX buffer size (%zd)\n", + ibdev, qp->qpn, iob_tailroom ( iobuf ) ); + return -EINVAL; + } + /* Check queue fill level */ if ( qp->recv.fill >= qp->recv.num_wqes ) { DBGC ( ibdev, "IBDEV %p QPN %#lx receive queue full\n", |