Skip to content

Commit fdf3585

Browse files
authored
clarify comments about "cores" and "debug" datasets (#9666)
1 parent 4aaec0d commit fdf3585

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

sled-storage/src/dataset.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ pub const U2_EXPECTED_DATASET_COUNT: usize = 2;
6363
pub const U2_EXPECTED_DATASETS: [ExpectedDataset; U2_EXPECTED_DATASET_COUNT] = [
6464
// Stores filesystems for zones
6565
ExpectedDataset::new(ZONE_DATASET),
66-
// For storing full kernel RAM dumps
66+
// For long-term storage of miscellaneous debug data, including kernel
67+
// crash dumps, process core dumps, log files, etc. See `DebugCollector`.
6768
ExpectedDataset::new(DUMP_DATASET)
6869
.quota(DUMP_DATASET_QUOTA)
6970
.compression(DUMP_DATASET_COMPRESSION),
@@ -75,7 +76,7 @@ const M2_EXPECTED_DATASETS: [ExpectedDataset; M2_EXPECTED_DATASET_COUNT] = [
7576
//
7677
// Should be duplicated to both M.2s.
7778
ExpectedDataset::new(INSTALL_DATASET),
78-
// Stores crash dumps.
79+
// Initial staging area for process core dumps.
7980
ExpectedDataset::new(CRASH_DATASET),
8081
// Backing store for OS data that should be persisted across reboots.
8182
// Its children are selectively overlay mounted onto parts of the ramdisk

0 commit comments

Comments
 (0)