aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland Dreier <rolandd@cisco.com>2006-10-31 15:52:42 +0000
committerRoland Dreier <rolandd@cisco.com>2006-11-09 11:36:34 -0800
commitd1593d4ab00b8889df1fc752e1a0b2859ac5b09e (patch)
tree2a37bd11e588ee260e27420cd4aa76272aec75aa
parenteb28e2e14e5e957a965686c05247de02a10e61a5 (diff)
downloadlibibverbs-d1593d4ab00b8889df1fc752e1a0b2859ac5b09e.tar.gz
Fix previous sq_draining change so it actually builds
Signed-off-by: Roland Dreier <rolandd@cisco.com>
-rw-r--r--src/cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd.c b/src/cmd.c
index 0a40fc3..21ca9a5 100644
--- a/src/cmd.c
+++ b/src/cmd.c
@@ -661,7 +661,7 @@ int ibv_cmd_query_qp(struct ibv_qp *qp, struct ibv_qp_attr *attr,
attr->cur_qp_state = resp.cur_qp_state;
attr->path_mtu = resp.path_mtu;
attr->path_mig_state = resp.path_mig_state;
- attr->sq_draining = resp.en_sqd_async_notify;
+ attr->sq_draining = resp.sq_draining;
attr->max_rd_atomic = resp.max_rd_atomic;
attr->max_dest_rd_atomic = resp.max_dest_rd_atomic;
attr->min_rnr_timer = resp.min_rnr_timer;