From 94826eaadc0574d084f554dcd912c8d1ca807afa Mon Sep 17 00:00:00 2001 From: Sridhar Seshasayee Date: Wed, 9 Jun 2021 11:44:11 +0530 Subject: [PATCH] qa/standalone: Use osd op queue = wpq in activate_osd() This change is a follow-up to commit b6e9c0903d5ad9a699b675f9fa7739e9cce9a5f3 that set the scheduler to wpq in run_osd() and run_osd_filestore(). In addition, activate_osd() too has to set the scheduler type to 'wpq' in order to be consistent and avoid test failures. The above is a temporary measure until all the standalone tests are modified to run well with the mclock_scheduler. Fixes: https://tracker.ceph.com/issues/51074 Signed-off-by: Sridhar Seshasayee --- qa/standalone/ceph-helpers.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/qa/standalone/ceph-helpers.sh b/qa/standalone/ceph-helpers.sh index 15be996901f..f0ba10f76a4 100755 --- a/qa/standalone/ceph-helpers.sh +++ b/qa/standalone/ceph-helpers.sh @@ -856,6 +856,7 @@ function activate_osd() { ceph_args+=" --osd-scrub-load-threshold=2000" ceph_args+=" --osd-data=$osd_data" ceph_args+=" --osd-journal=${osd_data}/journal" + ceph_args+=" --osd-op-queue=wpq" ceph_args+=" --chdir=" ceph_args+=$EXTRA_OPTS ceph_args+=" --run-dir=$dir" -- 2.39.5