diff options
author | Sage Weil <sage@newdream.net> | 2021-06-26 20:17:04 +0200 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2021-06-29 00:34:31 +0200 |
commit | d67bad8f3116b51152652f1e550ec48def095c62 (patch) | |
tree | d46f3d8d59307774085ef0af81b3a3b6a8a9e957 /src/include/ceph_fs.h | |
parent | test/cli/crushtool: use 'id' instead of 'ruleset' in crush inputs (diff) | |
download | ceph-d67bad8f3116b51152652f1e550ec48def095c62.tar.xz ceph-d67bad8f3116b51152652f1e550ec48def095c62.zip |
crush: remove last traces of 'ruleset'
Remove last traces of rulesets from crush. Mostly this means removing the
checks that rule masks don't overlap, since no such rules should exist
at this point, and the compiler no longer allows them.
Scrub all mention of 'ruleset' from other code.
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'src/include/ceph_fs.h')
-rw-r--r-- | src/include/ceph_fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/ceph_fs.h b/src/include/ceph_fs.h index eb73efa0366..2e3e119accc 100644 --- a/src/include/ceph_fs.h +++ b/src/include/ceph_fs.h @@ -77,7 +77,7 @@ struct ceph_file_layout { /* object -> pg layout */ __le32 fl_unused; /* unused; used to be preferred primary for pg (-1 for none) */ - __le32 fl_pg_pool; /* namespace, crush ruleset, rep level */ + __le32 fl_pg_pool; /* namespace, crush rule, rep level */ } __attribute__ ((packed)); #define CEPH_MIN_STRIPE_UNIT 65536 |