Home
last modified time | relevance | path

Searched refs:taskout (Results 1 – 2 of 2) sorted by relevance

/Linux-v4.19/drivers/ide/
Dide-taskfile.c473 unsigned int taskout = 0; in ide_taskfile_ioctl() local
481 taskout = req_task->out_size; in ide_taskfile_ioctl()
484 if (taskin > 65536 || taskout > 65536) { in ide_taskfile_ioctl()
489 if (taskout) { in ide_taskfile_ioctl()
491 outbuf = kzalloc(taskout, GFP_KERNEL); in ide_taskfile_ioctl()
496 if (copy_from_user(outbuf, buf + outtotal, taskout)) { in ide_taskfile_ioctl()
503 int intotal = tasksize + taskout; in ide_taskfile_ioctl()
589 nsect = taskout / SECTOR_SIZE; in ide_taskfile_ioctl()
647 if (taskout) { in ide_taskfile_ioctl()
649 if (copy_to_user(buf + outtotal, outbuf, taskout)) { in ide_taskfile_ioctl()
[all …]
/Linux-v4.19/drivers/block/mtip32xx/
Dmtip32xx.c1845 unsigned int taskout = 0; in exec_drive_taskfile() local
1854 taskout = req_task->out_size; in exec_drive_taskfile()
1857 if (taskin > 130560 || taskout > 130560) in exec_drive_taskfile()
1860 if (taskout) { in exec_drive_taskfile()
1861 outbuf = memdup_user(buf + outtotal, taskout); in exec_drive_taskfile()
1867 taskout, in exec_drive_taskfile()
1896 nsect = taskout / ATA_SECT_SIZE; in exec_drive_taskfile()
1940 if ((taskin || taskout) && (!fis.sect_count)) { in exec_drive_taskfile()
2009 taskout, DMA_TO_DEVICE); in exec_drive_taskfile()
2042 if (taskout) { in exec_drive_taskfile()
[all …]