From 45cf245e8b192181f9f274e50c89dd4411242e9c Mon Sep 17 00:00:00 2001 From: Venky Shankar Date: Wed, 27 Apr 2022 11:13:22 -0400 Subject: [PATCH] qa: use ceph/conf/mds rather than ceph/cephfs in yaml The way the config option was set results in the respective MDS codepaths to never get exercised. Fixes: http://tracker.ceph.com/issues/55170 Signed-off-by: Venky Shankar --- qa/cephfs/overrides/prefetch_entire_dirfrags/no.yaml | 5 +++-- qa/cephfs/overrides/prefetch_entire_dirfrags/yes.yaml | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/qa/cephfs/overrides/prefetch_entire_dirfrags/no.yaml b/qa/cephfs/overrides/prefetch_entire_dirfrags/no.yaml index 41903ef45fca..71d6d73bac29 100644 --- a/qa/cephfs/overrides/prefetch_entire_dirfrags/no.yaml +++ b/qa/cephfs/overrides/prefetch_entire_dirfrags/no.yaml @@ -1,4 +1,5 @@ overrides: ceph: - cephfs: - mds_dir_prefetch: false + conf: + mds: + mds_dir_prefetch: false diff --git a/qa/cephfs/overrides/prefetch_entire_dirfrags/yes.yaml b/qa/cephfs/overrides/prefetch_entire_dirfrags/yes.yaml index 143865a33f1a..5d25b61d181d 100644 --- a/qa/cephfs/overrides/prefetch_entire_dirfrags/yes.yaml +++ b/qa/cephfs/overrides/prefetch_entire_dirfrags/yes.yaml @@ -1,4 +1,5 @@ overrides: ceph: - cephfs: - mds_dir_prefetch: true + conf: + mds: + mds_dir_prefetch: true -- 2.47.3