Skip to content

Commit

Permalink
prov/rxd: Delete post_bufs tracking
Browse files Browse the repository at this point in the history
Since 7f8d168 when we move receive repost/remove to earlier in the pkt
handling, we don't need to track post_bufs and post them immediately.

Signed-off-by: Nikita Gusev <nikita.gusev@intel.com>
  • Loading branch information
nikitaxgusev committed Jul 28, 2019
1 parent b27848b commit 0cd3071
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion prov/rxd/src/rxd.h
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,6 @@ struct rxd_ep {
size_t tx_size;
size_t tx_prefix_size;
size_t rx_prefix_size;
uint32_t posted_bufs;
size_t min_multi_recv_size;
int do_local_mr;
int next_retry;
Expand Down
1 change: 0 additions & 1 deletion prov/rxd/src/rxd_ep.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,6 @@ int rxd_ep_post_buf(struct rxd_ep *ep)
return ret;
}

ep->posted_bufs++;
slist_insert_tail(&pkt_entry->s_entry, &ep->rx_pkt_list);

return 0;
Expand Down

0 comments on commit 0cd3071

Please sign in to comment.