Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/ide/
Dide-taskfile.c479 unsigned int taskout = 0; in ide_taskfile_ioctl() local
487 taskout = req_task->out_size; in ide_taskfile_ioctl()
490 if (taskin > 65536 || taskout > 65536) { in ide_taskfile_ioctl()
495 if (taskout) { in ide_taskfile_ioctl()
497 outbuf = kzalloc(taskout, GFP_KERNEL); in ide_taskfile_ioctl()
502 if (copy_from_user(outbuf, buf + outtotal, taskout)) { in ide_taskfile_ioctl()
509 int intotal = tasksize + taskout; in ide_taskfile_ioctl()
595 nsect = taskout / SECTOR_SIZE; in ide_taskfile_ioctl()
653 if (taskout) { in ide_taskfile_ioctl()
655 if (copy_to_user(buf + outtotal, outbuf, taskout)) { in ide_taskfile_ioctl()
[all …]
/linux-4.4.14/drivers/block/mtip32xx/
Dmtip32xx.c2026 unsigned int taskout = 0; in exec_drive_taskfile() local
2035 taskout = req_task->out_size; in exec_drive_taskfile()
2038 if (taskin > 130560 || taskout > 130560) { in exec_drive_taskfile()
2043 if (taskout) { in exec_drive_taskfile()
2044 outbuf = kzalloc(taskout, GFP_KERNEL); in exec_drive_taskfile()
2049 if (copy_from_user(outbuf, buf + outtotal, taskout)) { in exec_drive_taskfile()
2055 taskout, in exec_drive_taskfile()
2088 nsect = taskout / ATA_SECT_SIZE; in exec_drive_taskfile()
2132 if ((taskin || taskout) && (!fis.sect_count)) { in exec_drive_taskfile()
2202 taskout, DMA_TO_DEVICE); in exec_drive_taskfile()
[all …]