Skip to content

Commit

Permalink
Fix M2 expected datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewjstone committed Oct 26, 2023
1 parent 9997149 commit 82e2505
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion sled-storage/src/dataset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,18 @@ static U2_EXPECTED_DATASETS: [ExpectedDataset; U2_EXPECTED_DATASET_COUNT] = [
.compression(DUMP_DATASET_COMPRESSION),
];

const M2_EXPECTED_DATASET_COUNT: usize = 5;
const M2_EXPECTED_DATASET_COUNT: usize = 6;
static M2_EXPECTED_DATASETS: [ExpectedDataset; M2_EXPECTED_DATASET_COUNT] = [
// Stores software images.
//
// Should be duplicated to both M.2s.
ExpectedDataset::new(INSTALL_DATASET),
// Stores crash dumps.
ExpectedDataset::new(CRASH_DATASET),
// Backing store for OS data that should be persisted across reboots.
// Its children are selectively overlay mounted onto parts of the ramdisk
// root.
ExpectedDataset::new(M2_BACKING_DATASET),
// Stores cluter configuration information.
//
// Should be duplicated to both M.2s.
Expand Down

0 comments on commit 82e2505

Please sign in to comment.