mirror of https://github.com/ipxe/ipxe.git
[ipoib] Increase number of transmit work queue entries
Avoid running out of transmit work queue entries under heavy load. Signed-off-by: Michael Brown <mcb30@ipxe.org>pull/46/head
parent
b5aa51ac62
commit
9939b704f1
|
@ -65,13 +65,13 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
|
|||
"Missing REMAC for IPv4 packet (ARP sent)" )
|
||||
|
||||
/** Number of IPoIB send work queue entries */
|
||||
#define IPOIB_NUM_SEND_WQES 2
|
||||
#define IPOIB_NUM_SEND_WQES 8
|
||||
|
||||
/** Number of IPoIB receive work queue entries */
|
||||
#define IPOIB_NUM_RECV_WQES 4
|
||||
|
||||
/** Number of IPoIB completion entries */
|
||||
#define IPOIB_NUM_CQES 8
|
||||
#define IPOIB_NUM_CQES 16
|
||||
|
||||
/** An IPoIB broadcast address */
|
||||
struct ipoib_broadcast {
|
||||
|
|
Loading…
Reference in New Issue