cat /proc/mdstat
deve mostrar a você que o respectivo RAID possui um bitmap. Isso é semelhante ao diário de um sistema de arquivos: Quando o sistema trava (ou o RAID quebra), a função de sincronização tem um local onde ele pode verificar quais dados podem ser danificados. Tudo o mais pode ser ignorado. Assim, a reconstrução é muito rápida.
significado da linha de bitmap
de link
bitmap: 0/10 pages [0KB], 16384KB chunk
What would it mean when it's, eg: 23/234
This refers to the in-memory bitmap (basically a cache of what's in the on-disk bitmap − it allows bitmap operations to be more efficient).
If it's 23/234 that means there are 23 of 234 pages allocated in the in-memory bitmap. The pages are allocated on demand, and get freed when they're empty (all zeroes). The in-memory bitmap uses 16 bits for each bitmap chunk to count all ongoing writes to the chunk, so it's actually up to 16 times larger than the on-disk bitmap.