Merge pull request #12177 from kylinstorage/wip-remove-unneeded-loop

os/filestore/FileStore.cc: remove unneeded loop

Reviewed-by: Kefu Chai <kchai@redhat.com>
This commit is contained in:
Kefu Chai 2017-03-07 12:21:32 +08:00 committed by GitHub
commit 17ae338be3

View File

@ -2001,8 +2001,7 @@ void FileStore::_do_op(OpSequencer *osr, ThreadPool::TPHandle &handle)
if (cct->_conf->filestore_inject_stall) {
int orig = cct->_conf->filestore_inject_stall;
dout(5) << "_do_op filestore_inject_stall " << orig << ", sleeping" << dendl;
for (int n = 0; n < cct->_conf->filestore_inject_stall; n++)
sleep(1);
sleep(orig);
cct->_conf->set_val("filestore_inject_stall", "0");
dout(5) << "_do_op done stalling" << dendl;
}