rdma: reorder qpair elements to plug hole

Saves 8 bytes

Change-Id: Icb429ba79d7a085978950dd3045aa9ef28351101
Signed-off-by: Seth Howell <seth.howell@intel.com>
Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/448073
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
This commit is contained in:
Seth Howell 2019-03-14 13:05:58 -07:00 committed by Jim Harris
parent 91105e2031
commit 9f7582c3a5

View File

@ -345,14 +345,14 @@ struct spdk_nvmf_rdma_qpair {
*/
uint16_t current_recv_depth;
/* The current number of active RDMA READ operations */
uint16_t current_read_depth;
/* The current number of posted WRs from this qpair's
* send queue. Should not exceed max_send_depth.
*/
uint32_t current_send_depth;
/* The current number of active RDMA READ operations */
uint16_t current_read_depth;
/* The maximum number of SGEs per WR on the send queue */
uint32_t max_send_sge;