Searched refs:max_iosize (Results 1 – 10 of 10) sorted by relevance
/freebsd/sys/dev/ata/ |
H A D | ata-dma.c | 86 if (ch->dma.max_iosize == 0) in ata_dmainit() 87 ch->dma.max_iosize = (ATA_DMA_ENTRIES - 1) * PAGE_SIZE; in ata_dmainit() 95 NULL, NULL, ch->dma.max_iosize, in ata_dmainit() 191 NULL, NULL, ch->dma.max_iosize, in ata_dmaalloc() 288 if (request->bytecount > ch->dma.max_iosize) { in ata_dmaload() 291 request->bytecount, ch->dma.max_iosize); in ata_dmaload()
|
H A D | ata-all.h | 307 u_int32_t max_iosize; /* max IO size */ member 354 u_int32_t max_iosize; /* DMA data max IO size */ member
|
H A D | ata-all.c | 1178 cpi->maxio = ch->dma.max_iosize ? ch->dma.max_iosize : DFLTPHYS; in ataaction()
|
/freebsd/sys/powerpc/powermac/ |
H A D | ata_dbdma.c | 224 if (request->bytecount > ch->dma.max_iosize) { in ata_dbdma_load() 227 request->bytecount, ch->dma.max_iosize); in ata_dbdma_load()
|
/freebsd/sys/dev/ata/chipsets/ |
H A D | ata-national.c | 93 ch->dma.max_iosize = 64 * DEV_BSIZE; in ata_national_ch_attach()
|
H A D | ata-acerlabs.c | 206 if (ch->dma.max_iosize > 256 * 512) in ata_ali_ch_attach() 207 ch->dma.max_iosize = 256 * 512; in ata_ali_ch_attach()
|
H A D | ata-cyrix.c | 91 ch->dma.max_iosize = 64 * DEV_BSIZE; in ata_cyrix_ch_attach()
|
H A D | ata-serverworks.c | 240 ch->dma.max_iosize = 64 * DEV_BSIZE; in ata_serverworks_ch_attach()
|
/freebsd/usr.sbin/camdd/ |
H A D | camdd.c | 452 int camdd_probe_tape(int fd, char *filename, uint64_t *max_iosize, 970 camdd_probe_tape(int fd, char *filename, uint64_t *max_iosize, in camdd_probe_tape() argument 1008 *max_iosize = req_status_items[CAMDD_TS_EFF_IOSIZE].entry->value_unsigned; in camdd_probe_tape() 1104 uint64_t max_iosize, max_blk, min_blk, blk_gran; in camdd_probe_file() local 1113 &max_iosize, &max_blk, &min_blk, &blk_gran); in camdd_probe_file() 1124 if (dev->blocksize > max_iosize) { in camdd_probe_file() 1127 max_iosize); in camdd_probe_file() 1128 dev->blocksize = max_iosize; in camdd_probe_file() 1457 uint32_t cpi_maxio, max_iosize, pass_numblocks; in camdd_probe_pass() local 1577 max_iosize = min(cpi_maxio, CAMDD_PASS_MAX_BLOCK); in camdd_probe_pass() [all …]
|
/freebsd/sys/cam/ctl/ |
H A D | ctl_backend_block.c | 1238 int i, max_iosize, ref; in ctl_be_block_dispatch_dev() local 1248 max_iosize = dev->si_iosize_max; in ctl_be_block_dispatch_dev() 1249 if (max_iosize <= 0) in ctl_be_block_dispatch_dev() 1250 max_iosize = DFLTPHYS; in ctl_be_block_dispatch_dev() 1252 max_iosize = maxphys; in ctl_be_block_dispatch_dev() 1271 bio->bio_length = min(cur_size, max_iosize); in ctl_be_block_dispatch_dev()
|