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

/freebsd-11-stable/sys/dev/hptmv/
H A Dcommand.h37 USHORT nSectors; /* sector count. May great than 0x80 */ member in struct:_AtaCommand
50 BYTE nSectors; /* data transfer */ member in struct:_PassthroughCmd
80 * For rebuild/initialize, the buffer size should be nSectors<<9;
81 * For verify, the buffer size should be (nSectors*2)<<9.
86 USHORT nSectors; member in struct:_R1ControlCmd
H A Dhptintf.h705 BYTE nSectors; /* data sze in sectors, if the command has data transfer */ member in struct:_IDE_PASS_THROUGH_HEADER
718 USHORT nSectors; member in struct:_DEVICE_IO_EX_PARAMS
1093 * nSectors - number of sectors
1097 int hpt_lock_device(DEVICEID idDisk, ULONG Lba, UCHAR nSectors);
1100 int hpt_lock_device_v2(DEVICEID idDisk, LBA64 Lba, USHORT nSectors);
1133 * nSectors - Sectors for each member (RAID 5 will ignore this parameter)
1139 int hpt_verify_data_block(DEVICEID idArray, ULONG Lba, UCHAR nSectors);
1142 int hpt_verify_data_block_v2(DEVICEID idArray, LBA64 Lba, USHORT nSectors);
1152 * nSectors - Sectors for each member (RAID 5 will ignore this parameter)
1156 int hpt_initialize_data_block(DEVICEID idArray, ULONG Lba, UCHAR nSectors);
[all...]
H A Dioctl.c619 ULONG bufferSize = SECTOR_TO_BYTE(pCmd->uCmd.R1Control.nSectors);
756 pCmd->uCmd.R1Control.nSectors = MAX_REBUILD_SECTORS;
761 pCmd->uCmd.R1Control.nSectors = MAX_REBUILD_SECTORS/2;
766 pCmd->uCmd.R1Control.nSectors = MAX_REBUILD_SECTORS;
772 if (capacity - pArray->u.array.RebuildSectors < pCmd->uCmd.R1Control.nSectors)
773 pCmd->uCmd.R1Control.nSectors = capacity - pArray->u.array.RebuildSectors;
H A Dentry.c1713 USHORT nSector = pCmd->uCmd.Ide.nSectors;
1733 pDevice->HeadPosition = pCmd->uCmd.Ide.Lba + pCmd->uCmd.Ide.nSectors;
2800 pCmd->uCmd.Ide.nSectors = (USHORT) Cdb[4];
2814 pCmd->uCmd.Ide.nSectors = (USHORT)Cdb[12] << 8 | (USHORT)Cdb[13];
2819 pCmd->uCmd.Ide.nSectors = (USHORT) Cdb[8] | ((USHORT)Cdb[7]<<8);
/freebsd-11-stable/sys/dev/hpt27xx/
H A Dhim.h302 HPT_U16 nSectors; member in struct:_AtaCommand
340 HPT_U16 nSectors; member in struct:_PassthroughCmd
399 HPT_U16 nSectors; member in struct:_R1ControlCmd
H A Dhptintf.h1323 HPT_U8 nSectors; /* data size in sectors, if the command has data transfer */ member in struct:_IDE_PASS_THROUGH_HEADER
1340 HPT_U16 nSectors; /* data size in sectors, if the command has data transfer */ member in struct:_IDE_PASS_THROUGH_HEADER_V2
1376 HPT_U16 nSectors; member in struct:_DEVICE_IO_EX_PARAMS
1819 * nSectors - number of sectors
1823 int hpt_lock_device(DEVICEID idDisk, HPT_U32 Lba, HPT_U8 nSectors);
1865 * nSectors - Sectors for each member (RAID 5 will ignore this parameter)
1871 int hpt_verify_data_block(DEVICEID idArray, HPT_U32 Lba, HPT_U8 nSectors);
1879 * nSectors - Sectors for each member (RAID 5 will ignore this parameter)
1883 int hpt_initialize_data_block(DEVICEID idArray, HPT_U32 Lba, HPT_U8 nSectors);
1891 * nSectors
[all...]
H A Dhpt27xx_osm_bsd.c753 pCmd->uCmd.Ide.nSectors = (HPT_U16) cdb[4];
769 pCmd->uCmd.Ide.nSectors = (HPT_U16)cdb[13] | ((HPT_U16)cdb[12]<<8);
775 pCmd->uCmd.Ide.nSectors = (HPT_U16) cdb[8] | ((HPT_U16)cdb[7]<<8);
797 pCmd->uCmd.Ide.nSectors <<= sector_size_shift;
/freebsd-11-stable/sys/dev/hptnr/
H A Dhim.h302 HPT_U16 nSectors; member in struct:_AtaCommand
340 HPT_U16 nSectors; member in struct:_PassthroughCmd
387 HPT_U16 nSectors; member in struct:_R1ControlCmd
H A Dhptintf.h1319 HPT_U8 nSectors; /* data size in sectors, if the command has data transfer */ member in struct:_IDE_PASS_THROUGH_HEADER
1336 HPT_U16 nSectors; /* data size in sectors, if the command has data transfer */ member in struct:_IDE_PASS_THROUGH_HEADER_V2
1372 HPT_U16 nSectors; member in struct:_DEVICE_IO_EX_PARAMS
1815 * nSectors - number of sectors
1819 int hpt_lock_device(DEVICEID idDisk, HPT_U32 Lba, HPT_U8 nSectors);
1861 * nSectors - Sectors for each member (RAID 5 will ignore this parameter)
1867 int hpt_verify_data_block(DEVICEID idArray, HPT_U32 Lba, HPT_U8 nSectors);
1875 * nSectors - Sectors for each member (RAID 5 will ignore this parameter)
1879 int hpt_initialize_data_block(DEVICEID idArray, HPT_U32 Lba, HPT_U8 nSectors);
1887 * nSectors
[all...]
H A Dhptnr_osm_bsd.c705 passthru->nSectors = ccb->csio.dxfer_len/ATA_SECTOR_SIZE;
1000 pCmd->uCmd.Ide.nSectors = (HPT_U16) cdb[4];
1016 pCmd->uCmd.Ide.nSectors = (HPT_U16)cdb[13] | ((HPT_U16)cdb[12]<<8);
1022 pCmd->uCmd.Ide.nSectors = (HPT_U16) cdb[8] | ((HPT_U16)cdb[7]<<8);
1044 pCmd->uCmd.Ide.nSectors <<= sector_size_shift;
/freebsd-11-stable/sys/dev/hptrr/
H A Dhim.h270 HPT_U16 nSectors; member in struct:_AtaCommand
295 HPT_U8 nSectors; member in struct:_PassthroughCmd
342 HPT_U16 nSectors; member in struct:_R1ControlCmd
H A Dhptintf.h1125 HPT_U8 nSectors; /* data size in sectors, if the command has data transfer */ member in struct:_IDE_PASS_THROUGH_HEADER
1161 HPT_U16 nSectors; member in struct:_DEVICE_IO_EX_PARAMS
1537 * nSectors - number of sectors
1541 int hpt_lock_device(DEVICEID idDisk, HPT_U32 Lba, HPT_U8 nSectors);
1582 * nSectors - Sectors for each member (RAID 5 will ignore this parameter)
1588 int hpt_verify_data_block(DEVICEID idArray, HPT_U32 Lba, HPT_U8 nSectors);
1596 * nSectors - Sectors for each member (RAID 5 will ignore this parameter)
1600 int hpt_initialize_data_block(DEVICEID idArray, HPT_U32 Lba, HPT_U8 nSectors);
1608 * nSectors - Sectors for each member
1827 * nSectors
[all...]
H A Dhptrr_osm_bsd.c672 pCmd->uCmd.Ide.nSectors = (HPT_U16) cdb[4];
687 pCmd->uCmd.Ide.nSectors = (HPT_U16)cdb[13] | ((HPT_U16)cdb[12]<<8);
693 pCmd->uCmd.Ide.nSectors = (HPT_U16) cdb[8] | ((HPT_U16)cdb[7]<<8);

Completed in 167 milliseconds