Skip to content

Commit

Permalink
Merge PR ceph#26551 into master
Browse files Browse the repository at this point in the history
* refs/pull/26551/head:
	osd/PG: fix get debug refcount line

Reviewed-by: xie xingguo <[email protected]>
Reviewed-by: Neha Ojha <[email protected]>
  • Loading branch information
liewegas committed Feb 21, 2019
2 parents 32f36a9 + 1fb41a0 commit 38e25b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/osd/PG.cc
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ void PGStateHistory::dump(Formatter* f) const {

void PG::get(const char* tag)
{
int after = ref++;
int after = ++ref;
lgeneric_subdout(cct, refs, 1) << "PG::get " << this << " "
<< (after - 1) << " -> " << after << dendl;
#ifdef PG_DEBUG_REFS
Expand Down

0 comments on commit 38e25b5

Please sign in to comment.