summaryrefslogtreecommitdiffstats
path: root/src/drivers/net/ipoib.c
diff options
context:
space:
mode:
authorMichael Brown2007-09-17 20:17:55 +0200
committerMichael Brown2007-09-17 20:17:55 +0200
commit12b4cb964bb8240d4f5c43a9f2aac96d3163ca3b (patch)
tree51c106f70c3f6824e12162a872e3c6498b1d41df /src/drivers/net/ipoib.c
parentRemove hacks, and fix leaving the multicast GID. (diff)
downloadipxe-12b4cb964bb8240d4f5c43a9f2aac96d3163ca3b.tar.gz
ipxe-12b4cb964bb8240d4f5c43a9f2aac96d3163ca3b.tar.xz
ipxe-12b4cb964bb8240d4f5c43a9f2aac96d3163ca3b.zip
Removed more hacks, and adjusted number of queue entries for likely usage.
Diffstat (limited to 'src/drivers/net/ipoib.c')
-rw-r--r--src/drivers/net/ipoib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/drivers/net/ipoib.c b/src/drivers/net/ipoib.c
index e5bee93d..784c0720 100644
--- a/src/drivers/net/ipoib.c
+++ b/src/drivers/net/ipoib.c
@@ -41,10 +41,10 @@
#define IPOIB_DATA_NUM_SEND_WQES 2
/** Number of IPoIB data receive work queue entries */
-#define IPOIB_DATA_NUM_RECV_WQES 2
+#define IPOIB_DATA_NUM_RECV_WQES 4
/** Number of IPoIB data completion entries */
-#define IPOIB_DATA_NUM_CQES 32
+#define IPOIB_DATA_NUM_CQES 8
/** Number of IPoIB metadata send work queue entries */
#define IPOIB_META_NUM_SEND_WQES 2
@@ -53,7 +53,7 @@
#define IPOIB_META_NUM_RECV_WQES 2
/** Number of IPoIB metadata completion entries */
-#define IPOIB_META_NUM_CQES 32
+#define IPOIB_META_NUM_CQES 8
/** An IPoIB queue set */
struct ipoib_queue_set {