Searched refs:nSectors (Results 1 - 13 of 13) sorted by relevance

/freebsd-13-stable/sys/dev/hptmv/
H A Dcommand.h39 USHORT nSectors; /* sector count. May great than 0x80 */ member in struct:_AtaCommand
52 BYTE nSectors; /* data transfer */ member in struct:_PassthroughCmd
82 * For rebuild/initialize, the buffer size should be nSectors<<9;
83 * For verify, the buffer size should be (nSectors*2)<<9.
88 USHORT nSectors; member in struct:_R1ControlCmd
H A Dhptintf.h707 BYTE nSectors; /* data sze in sectors, if the command has data transfer */ member in struct:_IDE_PASS_THROUGH_HEADER
720 USHORT nSectors; member in struct:_DEVICE_IO_EX_PARAMS
1095 * nSectors - number of sectors
1099 int hpt_lock_device(DEVICEID idDisk, ULONG Lba, UCHAR nSectors);
1102 int hpt_lock_device_v2(DEVICEID idDisk, LBA64 Lba, USHORT nSectors);
1135 * nSectors - Sectors for each member (RAID 5 will ignore this parameter)
1141 int hpt_verify_data_block(DEVICEID idArray, ULONG Lba, UCHAR nSectors);
1144 int hpt_verify_data_block_v2(DEVICEID idArray, LBA64 Lba, USHORT nSectors);
1154 * nSectors - Sectors for each member (RAID 5 will ignore this parameter)
1158 int hpt_initialize_data_block(DEVICEID idArray, ULONG Lba, UCHAR nSectors);
[all...]
H A Dioctl.c621 ULONG bufferSize = SECTOR_TO_BYTE(pCmd->uCmd.R1Control.nSectors);
758 pCmd->uCmd.R1Control.nSectors = MAX_REBUILD_SECTORS;
763 pCmd->uCmd.R1Control.nSectors = MAX_REBUILD_SECTORS/2;
768 pCmd->uCmd.R1Control.nSectors = MAX_REBUILD_SECTORS;
774 if (capacity - pArray->u.array.RebuildSectors < pCmd->uCmd.R1Control.nSectors)
775 pCmd->uCmd.R1Control.nSectors = capacity - pArray->u.array.RebuildSectors;
H A Dentry.c1715 USHORT nSector = pCmd->uCmd.Ide.nSectors;
1735 pDevice->HeadPosition = pCmd->uCmd.Ide.Lba + pCmd->uCmd.Ide.nSectors;
2796 pCmd->uCmd.Ide.nSectors = (USHORT) Cdb[4];
2810 pCmd->uCmd.Ide.nSectors = (USHORT)Cdb[12] << 8 | (USHORT)Cdb[13];
2815 pCmd->uCmd.Ide.nSectors = (USHORT) Cdb[8] | ((USHORT)Cdb[7]<<8);
/freebsd-13-stable/sys/dev/hpt27xx/
H A Dhim.h304 HPT_U16 nSectors; member in struct:_AtaCommand
342 HPT_U16 nSectors; member in struct:_PassthroughCmd
401 HPT_U16 nSectors; member in struct:_R1ControlCmd
H A Dhptintf.h1325 HPT_U8 nSectors; /* data size in sectors, if the command has data transfer */ member in struct:_IDE_PASS_THROUGH_HEADER
1342 HPT_U16 nSectors; /* data size in sectors, if the command has data transfer */ member in struct:_IDE_PASS_THROUGH_HEADER_V2
1378 HPT_U16 nSectors; member in struct:_DEVICE_IO_EX_PARAMS
1821 * nSectors - number of sectors
1825 int hpt_lock_device(DEVICEID idDisk, HPT_U32 Lba, HPT_U8 nSectors);
1867 * nSectors - Sectors for each member (RAID 5 will ignore this parameter)
1873 int hpt_verify_data_block(DEVICEID idArray, HPT_U32 Lba, HPT_U8 nSectors);
1881 * nSectors - Sectors for each member (RAID 5 will ignore this parameter)
1885 int hpt_initialize_data_block(DEVICEID idArray, HPT_U32 Lba, HPT_U8 nSectors);
1893 * nSectors
[all...]
H A Dhpt27xx_osm_bsd.c755 pCmd->uCmd.Ide.nSectors = (HPT_U16) cdb[4];
771 pCmd->uCmd.Ide.nSectors = (HPT_U16)cdb[13] | ((HPT_U16)cdb[12]<<8);
777 pCmd->uCmd.Ide.nSectors = (HPT_U16) cdb[8] | ((HPT_U16)cdb[7]<<8);
799 pCmd->uCmd.Ide.nSectors <<= sector_size_shift;
/freebsd-13-stable/sys/dev/hptnr/
H A Dhim.h304 HPT_U16 nSectors; member in struct:_AtaCommand
342 HPT_U16 nSectors; member in struct:_PassthroughCmd
389 HPT_U16 nSectors; member in struct:_R1ControlCmd
H A Dhptintf.h1321 HPT_U8 nSectors; /* data size in sectors, if the command has data transfer */ member in struct:_IDE_PASS_THROUGH_HEADER
1338 HPT_U16 nSectors; /* data size in sectors, if the command has data transfer */ member in struct:_IDE_PASS_THROUGH_HEADER_V2
1374 HPT_U16 nSectors; member in struct:_DEVICE_IO_EX_PARAMS
1817 * nSectors - number of sectors
1821 int hpt_lock_device(DEVICEID idDisk, HPT_U32 Lba, HPT_U8 nSectors);
1863 * nSectors - Sectors for each member (RAID 5 will ignore this parameter)
1869 int hpt_verify_data_block(DEVICEID idArray, HPT_U32 Lba, HPT_U8 nSectors);
1877 * nSectors - Sectors for each member (RAID 5 will ignore this parameter)
1881 int hpt_initialize_data_block(DEVICEID idArray, HPT_U32 Lba, HPT_U8 nSectors);
1889 * nSectors
[all...]
H A Dhptnr_osm_bsd.c707 passthru->nSectors = ccb->csio.dxfer_len/ATA_SECTOR_SIZE;
1002 pCmd->uCmd.Ide.nSectors = (HPT_U16) cdb[4];
1018 pCmd->uCmd.Ide.nSectors = (HPT_U16)cdb[13] | ((HPT_U16)cdb[12]<<8);
1024 pCmd->uCmd.Ide.nSectors = (HPT_U16) cdb[8] | ((HPT_U16)cdb[7]<<8);
1046 pCmd->uCmd.Ide.nSectors <<= sector_size_shift;
/freebsd-13-stable/sys/dev/hptrr/
H A Dhim.h272 HPT_U16 nSectors; member in struct:_AtaCommand
297 HPT_U8 nSectors; member in struct:_PassthroughCmd
344 HPT_U16 nSectors; member in struct:_R1ControlCmd
H A Dhptintf.h1127 HPT_U8 nSectors; /* data size in sectors, if the command has data transfer */ member in struct:_IDE_PASS_THROUGH_HEADER
1163 HPT_U16 nSectors; member in struct:_DEVICE_IO_EX_PARAMS
1539 * nSectors - number of sectors
1543 int hpt_lock_device(DEVICEID idDisk, HPT_U32 Lba, HPT_U8 nSectors);
1584 * nSectors - Sectors for each member (RAID 5 will ignore this parameter)
1590 int hpt_verify_data_block(DEVICEID idArray, HPT_U32 Lba, HPT_U8 nSectors);
1598 * nSectors - Sectors for each member (RAID 5 will ignore this parameter)
1602 int hpt_initialize_data_block(DEVICEID idArray, HPT_U32 Lba, HPT_U8 nSectors);
1610 * nSectors - Sectors for each member
1829 * nSectors
[all...]
H A Dhptrr_osm_bsd.c674 pCmd->uCmd.Ide.nSectors = (HPT_U16) cdb[4];
689 pCmd->uCmd.Ide.nSectors = (HPT_U16)cdb[13] | ((HPT_U16)cdb[12]<<8);
695 pCmd->uCmd.Ide.nSectors = (HPT_U16) cdb[8] | ((HPT_U16)cdb[7]<<8);

Completed in 251 milliseconds