• Home
  • Raw
  • Download

Lines Matching refs:id_phys

1490 	struct bmic_identify_physical_device *id_phys)  in pqi_get_physical_device_info()  argument
1494 memset(id_phys, 0, sizeof(*id_phys)); in pqi_get_physical_device_info()
1497 id_phys, sizeof(*id_phys)); in pqi_get_physical_device_info()
1503 scsi_sanitize_inquiry_string(&id_phys->model[0], 8); in pqi_get_physical_device_info()
1504 scsi_sanitize_inquiry_string(&id_phys->model[8], 16); in pqi_get_physical_device_info()
1506 memcpy(device->vendor, &id_phys->model[0], sizeof(device->vendor)); in pqi_get_physical_device_info()
1507 memcpy(device->model, &id_phys->model[8], sizeof(device->model)); in pqi_get_physical_device_info()
1509 device->box_index = id_phys->box_index; in pqi_get_physical_device_info()
1510 device->phys_box_on_bus = id_phys->phys_box_on_bus; in pqi_get_physical_device_info()
1511 device->phy_connected_dev_type = id_phys->phy_connected_dev_type[0]; in pqi_get_physical_device_info()
1513 get_unaligned_le16(&id_phys->current_queue_depth_limit); in pqi_get_physical_device_info()
1514 device->active_path_index = id_phys->active_path_number; in pqi_get_physical_device_info()
1515 device->path_map = id_phys->redundant_path_present_map; in pqi_get_physical_device_info()
1517 &id_phys->alternate_paths_phys_box_on_port, in pqi_get_physical_device_info()
1520 &id_phys->alternate_paths_phys_connector, in pqi_get_physical_device_info()
1522 device->bay = id_phys->phys_bay_in_box; in pqi_get_physical_device_info()
1524 memcpy(&device->page_83_identifier, &id_phys->page_83_identifier, in pqi_get_physical_device_info()
1527 if ((id_phys->even_more_flags & PQI_DEVICE_PHY_MAP_SUPPORTED) && in pqi_get_physical_device_info()
1528 id_phys->phy_count) in pqi_get_physical_device_info()
1530 id_phys->phy_to_phy_map[device->active_path_index]; in pqi_get_physical_device_info()
1579 struct bmic_identify_physical_device *id_phys) in pqi_get_device_info() argument
1589 rc = pqi_get_physical_device_info(ctrl_info, device, id_phys); in pqi_get_device_info()
2168 struct bmic_identify_physical_device *id_phys = NULL; in pqi_update_scsi_devices() local
2208 id_phys = kmalloc(sizeof(*id_phys), GFP_KERNEL); in pqi_update_scsi_devices()
2209 if (!id_phys) { in pqi_update_scsi_devices()
2301 rc = pqi_get_device_info(ctrl_info, device, id_phys); in pqi_update_scsi_devices()
2357 kfree(id_phys); in pqi_update_scsi_devices()