mirror of
https://github.com/ceph/ceph
synced 2024-12-18 01:16:55 +00:00
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:
commit
17ae338be3
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user