From 852f480a80fd21577e2111dcf74e09cca98ba380 Mon Sep 17 00:00:00 2001 From: Vu Pham Date: Wed, 17 Dec 2014 07:11:54 -0800 Subject: [PATCH] xio: Correct q_high_mark setting Correct q_high_mark setting to 80% of Accelio q_depth Signed-off-by: Vu Pham --- src/msg/xio/XioConnection.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msg/xio/XioConnection.cc b/src/msg/xio/XioConnection.cc index 4d12ea66b9..ed69dd5b89 100644 --- a/src/msg/xio/XioConnection.cc +++ b/src/msg/xio/XioConnection.cc @@ -114,7 +114,7 @@ XioConnection::XioConnection(XioMessenger *m, XioConnection::type _type, xopt = max_msgs; /* set high mark for send, reserved 20% for credits */ - q_high_mark = xopt - (xopt * 8 / 10); + q_high_mark = xopt * 4 / 5; q_low_mark = q_high_mark/2; /* set send & receive msgs queue depth */