Home
last modified time | relevance | path

Searched refs:TableID (Results 1 – 3 of 3) sorted by relevance

/netbsd/src/sys/dev/raidframe/
Drf_declusterPQ.c284 RF_StripeNum_t FullTableID, FullTableOffset, TableID, TableOffset; in rf_MapSectorDeclusteredPQ() local
301 TableID = FullTableOffset / info->SUsPerTable; in rf_MapSectorDeclusteredPQ()
302 TableOffset = FullTableOffset - TableID * info->SUsPerTable; in rf_MapSectorDeclusteredPQ()
313 RepIndex = info->groupSize - 1 - TableID; in rf_MapSectorDeclusteredPQ()
316 if (TableID == 0) in rf_MapSectorDeclusteredPQ()
325 …rf_remap_to_spare_space(layoutPtr, info, FullTableID, TableID, BlockID, (base_suid) ? 1 : 0, Spare… in rf_MapSectorDeclusteredPQ()
331 … outSU += TableID * info->TableDepthInPUs * layoutPtr->SUsPerPU; /* offs to strt of tble */ in rf_MapSectorDeclusteredPQ()
351 RF_StripeNum_t FullTableID, FullTableOffset, TableID, TableOffset; in rf_MapParityDeclusteredPQ() local
369 TableID = FullTableOffset / info->SUsPerTable; in rf_MapParityDeclusteredPQ()
370 TableOffset = FullTableOffset - TableID * info->SUsPerTable; in rf_MapParityDeclusteredPQ()
[all …]
Drf_decluster.c324 RF_StripeNum_t FullTableID, FullTableOffset, TableID, TableOffset; in rf_MapSectorDeclustered() local
340 TableID = FullTableOffset / info->SUsPerTable; in rf_MapSectorDeclustered()
341 TableOffset = FullTableOffset - TableID * info->SUsPerTable; in rf_MapSectorDeclustered()
345 RepIndex = info->PUsPerBlock - TableID; in rf_MapSectorDeclustered()
353 …rf_remap_to_spare_space(layoutPtr, info, FullTableID, TableID, BlockID, (base_suid) ? 1 : 0, Spare… in rf_MapSectorDeclustered()
359 … outSU += TableID * info->TableDepthInPUs * layoutPtr->SUsPerPU; /* offs to strt of tble */ in rf_MapSectorDeclustered()
382 RF_StripeNum_t FullTableID, FullTableOffset, TableID, TableOffset; in rf_MapParityDeclustered() local
399 TableID = FullTableOffset / info->SUsPerTable; in rf_MapParityDeclustered()
400 TableOffset = FullTableOffset - TableID * info->SUsPerTable; in rf_MapParityDeclustered()
408 RepIndex = (raidPtr->noRotate) ? info->PUsPerBlock : info->PUsPerBlock - TableID; in rf_MapParityDeclustered()
[all …]
Drf_decluster.h129 RF_StripeNum_t TableID, RF_SectorNum_t BlockID, RF_StripeNum_t base_suid,