Skip to content

Commit

Permalink
Merge pull request ceph#32773 from dzafman/wip-43246-nautilus
Browse files Browse the repository at this point in the history
nautilus: osd: Use physical ratio for nearfull (doesn't include backfill resserve)

Reviewed-by: Neha Ojha <nojha@redhat.com>
  • Loading branch information
yuriw committed Feb 7, 2020
2 parents 250a778 + d7bf280 commit 443a6cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/osd/OSD.cc
Expand Up @@ -740,7 +740,7 @@ OSDService::s_names OSDService::recalc_full_state(float ratio, float pratio, str
return FULL;
} else if (ratio > backfillfull_ratio) {
return BACKFILLFULL;
} else if (ratio > nearfull_ratio) {
} else if (pratio > nearfull_ratio) {
return NEARFULL;
}
return NONE;
Expand Down

0 comments on commit 443a6cf

Please sign in to comment.