Symbol: raid_map
sys/dev/smartpqi/smartpqi_discovery.c
1007
pqisrc_raid_map_t *raid_map;
sys/dev/smartpqi/smartpqi_discovery.c
1013
raid_map = os_mem_alloc(softs, raidmap_alloc_size);
sys/dev/smartpqi/smartpqi_discovery.c
1014
if (!raid_map)
sys/dev/smartpqi/smartpqi_discovery.c
1024
ret = pqisrc_prepare_send_raid(softs, &request, raid_map, raidmap_alloc_size, device->scsi3addr, NULL);
sys/dev/smartpqi/smartpqi_discovery.c
1031
raidmap_reported_size = LE_32(raid_map->structure_size);
sys/dev/smartpqi/smartpqi_discovery.c
1036
os_mem_free(softs, (char*)raid_map, raidmap_alloc_size);
sys/dev/smartpqi/smartpqi_discovery.c
1041
ret = pqisrc_raid_map_validation(softs, device, raid_map);
sys/dev/smartpqi/smartpqi_discovery.c
1047
structure_size = raid_map->data_disks_per_row * sizeof(*next_offload_to_mirror);
sys/dev/smartpqi/smartpqi_discovery.c
1054
device->raid_map = raid_map;
sys/dev/smartpqi/smartpqi_discovery.c
1060
os_mem_free(softs, (char*)raid_map, sizeof(*raid_map));
sys/dev/smartpqi/smartpqi_discovery.c
1401
if (device_exist->raid_map) {
sys/dev/smartpqi/smartpqi_discovery.c
1402
device_exist->temp_raid_map = device_exist->raid_map;
sys/dev/smartpqi/smartpqi_discovery.c
1404
device_exist->raid_map = new_device->raid_map;
sys/dev/smartpqi/smartpqi_discovery.c
1406
new_device->raid_map = NULL;
sys/dev/smartpqi/smartpqi_discovery.c
1556
if (device->raid_map) {
sys/dev/smartpqi/smartpqi_discovery.c
1557
os_mem_free(softs, (char *)device->raid_map, sizeof(pqisrc_raid_map_t));
sys/dev/smartpqi/smartpqi_discovery.c
2214
if(new_device_list[i]->raid_map)
sys/dev/smartpqi/smartpqi_discovery.c
2215
os_mem_free(softs, (char *)new_device_list[i]->raid_map,
sys/dev/smartpqi/smartpqi_discovery.c
942
pqi_scsi_dev_t const *device, pqisrc_raid_map_t *raid_map)
sys/dev/smartpqi/smartpqi_discovery.c
951
raidmap_size = LE_32(raid_map->structure_size);
sys/dev/smartpqi/smartpqi_discovery.c
958
phys_dev_num = LE_16(raid_map->layout_map_count) *
sys/dev/smartpqi/smartpqi_discovery.c
959
(LE_16(raid_map->data_disks_per_row) +
sys/dev/smartpqi/smartpqi_discovery.c
960
LE_16(raid_map->metadata_disks_per_row));
sys/dev/smartpqi/smartpqi_discovery.c
964
if (LE_16(raid_map->layout_map_count) != 2) {
sys/dev/smartpqi/smartpqi_discovery.c
969
if (LE_16(raid_map->layout_map_count) != 3) {
sys/dev/smartpqi/smartpqi_discovery.c
975
LE_16(raid_map->layout_map_count) > 1) {
sys/dev/smartpqi/smartpqi_discovery.c
978
LE_16(raid_map->strip_size) *
sys/dev/smartpqi/smartpqi_discovery.c
979
LE_16(raid_map->data_disks_per_row);
sys/dev/smartpqi/smartpqi_request.c
1094
struct raid_map *raid_map, uint64_t first_block)
sys/dev/smartpqi/smartpqi_request.c
1103
volume_blk_size = GET_LE32((uint8_t *)&raid_map->volume_blk_size);
sys/dev/smartpqi/smartpqi_request.c
1108
GET_LE16((uint8_t *)&raid_map->data_encryption_key_index);
sys/dev/smartpqi/smartpqi_request.c
1240
GET_LE64((uint8_t *)&l->raid_map->volume_blk_cnt)) {
sys/dev/smartpqi/smartpqi_request.c
1258
GET_LE16((uint8_t *)&l->raid_map->data_disks_per_row);
sys/dev/smartpqi/smartpqi_request.c
1260
GET_LE16((uint8_t *)(&l->raid_map->strip_size));
sys/dev/smartpqi/smartpqi_request.c
1262
GET_LE16((uint8_t *)(&l->raid_map->layout_map_count));
sys/dev/smartpqi/smartpqi_request.c
1312
LE_16(l->raid_map->metadata_disks_per_row);
sys/dev/smartpqi/smartpqi_request.c
1315
l->raid_map->parity_rotation_shift)) %
sys/dev/smartpqi/smartpqi_request.c
1316
GET_LE16((uint8_t *)(&l->raid_map->row_cnt));
sys/dev/smartpqi/smartpqi_request.c
1362
l->raid_map->dev_data[index].ioaccel_handle;
sys/dev/smartpqi/smartpqi_request.c
1449
(l->row.first >> l->raid_map->parity_rotation_shift)) %
sys/dev/smartpqi/smartpqi_request.c
1450
GET_LE16((uint8_t *)(&l->raid_map->row_cnt));
sys/dev/smartpqi/smartpqi_request.c
1453
(GET_LE16((uint8_t *)(&l->raid_map->row_cnt))
sys/dev/smartpqi/smartpqi_request.c
1469
GET_LE64((uint8_t *) (&l->raid_map->disk_starting_blk))
sys/dev/smartpqi/smartpqi_request.c
1484
if (l->raid_map->phys_blk_shift) {
sys/dev/smartpqi/smartpqi_request.c
1485
l->block.disk_block <<= l->raid_map->phys_blk_shift;
sys/dev/smartpqi/smartpqi_request.c
1486
disk_blk_cnt <<= l->raid_map->phys_blk_shift;
sys/dev/smartpqi/smartpqi_request.c
1502
uint32_t size = disk_blk_cnt * device->raid_map->volume_blk_size;
sys/dev/smartpqi/smartpqi_request.c
1550
pqisrc_aio_show_raid_map(pqisrc_softstate_t const *softs, struct raid_map const *m)
sys/dev/smartpqi/smartpqi_request.c
1589
pqisrc_aio_show_raid_map(softs, l->raid_map);
sys/dev/smartpqi/smartpqi_request.c
1788
if (device->raid_map == NULL) {
sys/dev/smartpqi/smartpqi_request.c
1802
l->raid_map = device->raid_map;
sys/dev/smartpqi/smartpqi_request.c
1854
l->raid_map->dev_data[l->map.idx].ioaccel_handle;
sys/dev/smartpqi/smartpqi_request.c
1867
if (GET_LE16((uint8_t *)(&l->raid_map->flags)) &
sys/dev/smartpqi/smartpqi_request.c
1869
pqisrc_set_enc_info(&rcb->enc_info, l->raid_map,
sys/dev/smartpqi/smartpqi_request.c
459
if (!rcb->dvp->raid_map) {
sys/dev/smartpqi/smartpqi_request.c
487
aio_req->num_drives = LE_16(rcb->dvp->raid_map->layout_map_count);
sys/dev/smartpqi/smartpqi_request.c
581
num_data_disks = LE_16(rcb->dvp->raid_map->data_disks_per_row);
sys/dev/smartpqi/smartpqi_request.c
582
num_metadata_disks = LE_16(rcb->dvp->raid_map->metadata_disks_per_row);
sys/dev/smartpqi/smartpqi_request.c
607
aio_req->data_it_nexus = rcb->dvp->raid_map->dev_data[rcb->raid_map_index].ioaccel_handle;
sys/dev/smartpqi/smartpqi_request.c
609
rcb->dvp->raid_map->dev_data[index].ioaccel_handle;
sys/dev/smartpqi/smartpqi_request.c
613
rcb->dvp->raid_map->dev_data[index + 1].ioaccel_handle;
sys/dev/smartpqi/smartpqi_request.c
616
rcb->dvp->raid_map->dev_data[rcb->raid_map_index].xor_mult[1];
sys/dev/smartpqi/smartpqi_structures.h
1054
struct raid_map *raid_map; /* relevant raid map */
sys/dev/smartpqi/smartpqi_structures.h
904
struct raid_map *raid_map; /* I/O accelerator RAID map */
sys/dev/smartpqi/smartpqi_structures.h
906
struct raid_map *temp_raid_map; /* Temporary stored RAID map which will be freed later */