Skip to content

Commit

Permalink
Merge pull request ceph#40 from ivancich/wip-change-client-rec-init
Browse files Browse the repository at this point in the history
Change ClientRec's initalization of indirect intrusive heap data
  • Loading branch information
ivancich authored Sep 27, 2017
2 parents 824d92d + 941d1be commit 93f760c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/dmclock_server.h
Original file line number Diff line number Diff line change
Expand Up @@ -296,11 +296,11 @@ namespace crimson {
// an idle client becoming unidle
double prop_delta = 0.0;

c::IndIntruHeapData reserv_heap_data = 0;
c::IndIntruHeapData lim_heap_data = 0;
c::IndIntruHeapData ready_heap_data = 0;
c::IndIntruHeapData reserv_heap_data {};
c::IndIntruHeapData lim_heap_data {};
c::IndIntruHeapData ready_heap_data {};
#if USE_PROP_HEAP
c::IndIntruHeapData prop_heap_data = 0;
c::IndIntruHeapData prop_heap_data {};
#endif

public:
Expand Down

0 comments on commit 93f760c

Please sign in to comment.