/kernel/linux/linux-5.10/drivers/mtd/nand/raw/bcm47xxnflash/ |
D | ops_bcm4706.c | 94 int toread; in bcm47xxnflash_ops_bcm4706_read() local 102 toread = min(len, 0x200); in bcm47xxnflash_ops_bcm4706_read() 120 for (i = 0; i < toread; i += 4, dest++) { in bcm47xxnflash_ops_bcm4706_read() 122 if (i == toread - 4) /* Last read goes without that */ in bcm47xxnflash_ops_bcm4706_read() 130 b47n->curr_column += toread; in bcm47xxnflash_ops_bcm4706_read() 131 len -= toread; in bcm47xxnflash_ops_bcm4706_read()
|
/kernel/linux/linux-5.10/drivers/mtd/maps/ |
D | pcmciamtd.c | 145 int toread = win_size - (from & (win_size-1)); in pcmcia_copy_from_remap() local 148 if(toread > len) in pcmcia_copy_from_remap() 149 toread = len; in pcmcia_copy_from_remap() 155 pr_debug("memcpy from %p to %p len = %d\n", addr, to, toread); in pcmcia_copy_from_remap() 156 memcpy_fromio(to, addr, toread); in pcmcia_copy_from_remap() 157 len -= toread; in pcmcia_copy_from_remap() 158 to += toread; in pcmcia_copy_from_remap() 159 from += toread; in pcmcia_copy_from_remap()
|
/kernel/linux/linux-5.10/tools/iio/ |
D | iio_generic_buffer.c | 335 unsigned long toread; in main() local 651 toread = buf_len; in main() 654 toread = 64; in main() 657 read_size = read(fp, data, toread * scan_size); in main()
|
/kernel/linux/linux-5.10/fs/jfs/ |
D | super.c | 743 size_t toread; in jfs_quota_read() local 752 toread = len; in jfs_quota_read() 753 while (toread > 0) { in jfs_quota_read() 754 tocopy = sb->s_blocksize - offset < toread ? in jfs_quota_read() 755 sb->s_blocksize - offset : toread; in jfs_quota_read() 772 toread -= tocopy; in jfs_quota_read()
|
/kernel/linux/linux-5.10/drivers/iio/gyro/ |
D | mpu3050-core.c | 536 unsigned int toread; in mpu3050_trigger_handler() local 549 toread = bytes_per_datum + 2; in mpu3050_trigger_handler() 552 toread = bytes_per_datum; in mpu3050_trigger_handler() 561 toread); in mpu3050_trigger_handler() 578 fifocnt -= toread; in mpu3050_trigger_handler()
|
/kernel/linux/linux-5.10/fs/ocfs2/ |
D | quota_global.c | 177 size_t toread, tocopy; in ocfs2_quota_read() local 184 toread = len; in ocfs2_quota_read() 185 while (toread > 0) { in ocfs2_quota_read() 186 tocopy = min_t(size_t, (sb->s_blocksize - offset), toread); in ocfs2_quota_read() 207 toread -= tocopy; in ocfs2_quota_read()
|
/kernel/linux/linux-5.10/drivers/net/can/c_can/ |
D | c_can.c | 849 u32 pkts = 0, pend = 0, toread, n; in c_can_do_rx_poll() local 867 toread = c_can_adjust_pending(pend); in c_can_do_rx_poll() 869 toread = pend; in c_can_do_rx_poll() 872 pend &= ~toread; in c_can_do_rx_poll() 874 n = c_can_read_objects(dev, priv, toread, quota); in c_can_do_rx_poll()
|
/kernel/linux/linux-5.10/fs/ext2/ |
D | super.c | 1495 size_t toread; in ext2_quota_read() local 1504 toread = len; in ext2_quota_read() 1505 while (toread > 0) { in ext2_quota_read() 1506 tocopy = sb->s_blocksize - offset < toread ? in ext2_quota_read() 1507 sb->s_blocksize - offset : toread; in ext2_quota_read() 1524 toread -= tocopy; in ext2_quota_read()
|
/kernel/linux/linux-5.10/fs/reiserfs/ |
D | super.c | 2505 size_t toread; in reiserfs_quota_read() local 2513 toread = len; in reiserfs_quota_read() 2514 while (toread > 0) { in reiserfs_quota_read() 2517 toread ? sb->s_blocksize - offset : toread; in reiserfs_quota_read() 2538 toread -= tocopy; in reiserfs_quota_read()
|
/kernel/linux/linux-5.10/drivers/md/ |
D | raid5.h | 265 struct bio *toread, *read, *towrite, *written; member
|
D | raid5.c | 589 if (dev->toread || dev->read || dev->towrite || dev->written || in init_stripe() 592 (unsigned long long)sh->sector, i, dev->toread, in init_stripe() 1425 dev->read = rbi = dev->toread; in ops_run_biofill() 1426 dev->toread = NULL; in ops_run_biofill() 3426 bip = &sh->dev[dd_idx].toread; in add_stripe_bio() 3629 bi = sh->dev[i].toread; in handle_failed_stripe() 3630 sh->dev[i].toread = NULL; in handle_failed_stripe() 3744 if (dev->toread || in need_this_block() 3756 if ((s->failed >= 1 && fdev[0]->toread) || in need_this_block() 3757 (s->failed >= 2 && fdev[1]->toread)) in need_this_block() [all …]
|
/kernel/linux/linux-5.10/drivers/mtd/nand/raw/ |
D | nand_base.c | 3207 int toread = min(oobreadlen, max_oobsize); in nand_do_read_ops() local 3209 if (toread) { in nand_do_read_ops() 3211 toread); in nand_do_read_ops() 3212 oobreadlen -= toread; in nand_do_read_ops() 3311 int i, toread, sndrnd = 0, pos, ret; in nand_read_oob_syndrome() local 3334 toread = min_t(int, length, chunk); in nand_read_oob_syndrome() 3336 ret = nand_read_data_op(chip, bufpoi, toread, false, false); in nand_read_oob_syndrome() 3340 bufpoi += toread; in nand_read_oob_syndrome() 3341 length -= toread; in nand_read_oob_syndrome()
|
/kernel/linux/linux-5.10/fs/f2fs/ |
D | super.c | 2061 size_t toread; in f2fs_quota_read() local 2071 toread = len; in f2fs_quota_read() 2072 while (toread > 0) { in f2fs_quota_read() 2073 tocopy = min_t(unsigned long, sb->s_blocksize - offset, toread); in f2fs_quota_read() 2104 toread -= tocopy; in f2fs_quota_read()
|
/kernel/linux/linux-5.10/fs/ext4/ |
D | super.c | 6586 size_t toread; in ext4_quota_read() local 6594 toread = len; in ext4_quota_read() 6595 while (toread > 0) { in ext4_quota_read() 6596 tocopy = sb->s_blocksize - offset < toread ? in ext4_quota_read() 6597 sb->s_blocksize - offset : toread; in ext4_quota_read() 6607 toread -= tocopy; in ext4_quota_read()
|
/kernel/linux/linux-5.10/arch/x86/kvm/ |
D | x86.c | 6093 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset); in kvm_read_guest_virt_helper() local 6099 offset, toread); in kvm_read_guest_virt_helper() 6105 bytes -= toread; in kvm_read_guest_virt_helper() 6106 data += toread; in kvm_read_guest_virt_helper() 6107 addr += toread; in kvm_read_guest_virt_helper()
|