Searched refs:max_iosize (Results 1 - 11 of 11) sorted by relevance

/freebsd-11-stable/sys/dev/ata/
H A Data-dma.c87 if (ch->dma.max_iosize == 0)
88 ch->dma.max_iosize = MIN((ATA_DMA_ENTRIES - 1) * PAGE_SIZE, MAXPHYS);
96 NULL, NULL, ch->dma.max_iosize,
192 NULL, NULL, ch->dma.max_iosize,
289 if (request->bytecount > ch->dma.max_iosize) {
292 request->bytecount, ch->dma.max_iosize);
H A Data-all.h314 u_int32_t max_iosize; /* max IO size */ member in struct:ata_device
361 u_int32_t max_iosize; /* DMA data max IO size */ member in struct:ata_dma
H A Data-all.c1177 cpi->maxio = ch->dma.max_iosize ? ch->dma.max_iosize : DFLTPHYS;
/freebsd-11-stable/sys/dev/ata/chipsets/
H A Data-cyrix.c92 ch->dma.max_iosize = 64 * DEV_BSIZE;
H A Data-national.c94 ch->dma.max_iosize = 64 * DEV_BSIZE;
H A Data-acerlabs.c207 if (ch->dma.max_iosize > 256 * 512)
208 ch->dma.max_iosize = 256 * 512;
H A Data-serverworks.c242 ch->dma.max_iosize = 64 * DEV_BSIZE;
H A Data-promise.c994 ch->dma.max_iosize = 65536;
/freebsd-11-stable/sys/powerpc/powermac/
H A Data_dbdma.c225 if (request->bytecount > ch->dma.max_iosize) {
228 request->bytecount, ch->dma.max_iosize);
/freebsd-11-stable/usr.sbin/camdd/
H A Dcamdd.c478 int camdd_probe_tape(int fd, char *filename, uint64_t *max_iosize,
977 camdd_probe_tape(int fd, char *filename, uint64_t *max_iosize, argument
1015 *max_iosize = req_status_items[CAMDD_TS_EFF_IOSIZE].entry->value_unsigned;
1111 uint64_t max_iosize, max_blk, min_blk, blk_gran; local
1120 &max_iosize, &max_blk, &min_blk, &blk_gran);
1131 if (dev->blocksize > max_iosize) {
1134 max_iosize);
1135 dev->blocksize = max_iosize;
1260 uint32_t cpi_maxio, max_iosize, pass_numblocks; local
1433 max_iosize
[all...]
/freebsd-11-stable/sys/cam/ctl/
H A Dctl_backend_block.c1135 int i, max_iosize, ref; local
1146 max_iosize = dev->si_iosize_max;
1147 if (max_iosize < PAGE_SIZE)
1148 max_iosize = DFLTPHYS;
1150 max_iosize = DFLTPHYS;
1169 bio->bio_length = min(cur_size, max_iosize);

Completed in 136 milliseconds