⚠️ VeridianOS Kernel Documentation - This is low-level kernel code. All functions are unsafe unless explicitly marked otherwise. no_std

veridian_kernel/drivers/raid/
mod.rs

1//! Software RAID Implementation
2//!
3//! Provides software RAID levels 0, 1, and 5 with stripe mapping,
4//! parity computation, health monitoring, and hot-spare replacement.
5
6#![allow(dead_code)]
7
8pub mod manager;