File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -473,7 +473,6 @@ int RDMAConnectedSocketImpl::post_work_request(std::vector<Chunk*> &tx_buffers)
473473 ibv_send_wr iswr[tx_buffers.size ()];
474474 uint32_t current_swr = 0 ;
475475 ibv_send_wr* pre_wr = NULL ;
476- uint32_t num = 0 ;
477476
478477 // FIPS zeroization audit 20191115: these memsets are not security related.
479478 memset (iswr, 0 , sizeof (iswr));
@@ -492,7 +491,6 @@ int RDMAConnectedSocketImpl::post_work_request(std::vector<Chunk*> &tx_buffers)
492491 iswr[current_swr].opcode = IBV_WR_SEND;
493492 iswr[current_swr].send_flags = IBV_SEND_SIGNALED;
494493
495- num++;
496494 worker->perf_logger ->inc (l_msgr_rdma_tx_bytes, isge[current_sge].length );
497495 if (pre_wr)
498496 pre_wr->next = &iswr[current_swr];
You can’t perform that action at this time.
0 commit comments