From: Venky Shankar Date: Wed, 27 Apr 2022 15:13:22 +0000 (-0400) Subject: qa: use ceph/conf/mds rather than ceph/cephfs in yaml X-Git-Tag: v18.0.0~893^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=45cf245e8b192181f9f274e50c89dd4411242e9c;p=ceph.git 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 --- 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