Home
last modified time | relevance | path

Searched refs:toread (Results 1 – 15 of 15) sorted by relevance

/linux-6.1.9/drivers/mtd/nand/raw/bcm47xxnflash/ !
Dops_bcm4706.c94 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()
/linux-6.1.9/drivers/mtd/maps/ !
Dpcmciamtd.c145 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()
/linux-6.1.9/fs/jfs/ !
Dsuper.c737 size_t toread; in jfs_quota_read() local
746 toread = len; in jfs_quota_read()
747 while (toread > 0) { in jfs_quota_read()
748 tocopy = sb->s_blocksize - offset < toread ? in jfs_quota_read()
749 sb->s_blocksize - offset : toread; in jfs_quota_read()
766 toread -= tocopy; in jfs_quota_read()
/linux-6.1.9/drivers/iio/gyro/ !
Dmpu3050-core.c535 unsigned int toread; in mpu3050_trigger_handler() local
548 toread = bytes_per_datum + 2; in mpu3050_trigger_handler()
551 toread = bytes_per_datum; in mpu3050_trigger_handler()
560 toread); in mpu3050_trigger_handler()
578 fifocnt -= toread; in mpu3050_trigger_handler()
/linux-6.1.9/tools/iio/ !
Diio_generic_buffer.c338 unsigned long toread; in main() local
722 toread = buf_len; in main()
724 read_size = read(buf_fd, data, toread * scan_size); in main()
/linux-6.1.9/fs/ocfs2/ !
Dquota_global.c177 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()
/linux-6.1.9/drivers/net/can/c_can/ !
Dc_can_main.c883 u32 pkts = 0, pend = 0, toread, n; in c_can_do_rx_poll() local
893 toread = c_can_adjust_pending(pend, in c_can_do_rx_poll()
896 toread = pend; in c_can_do_rx_poll()
899 pend &= ~toread; in c_can_do_rx_poll()
901 n = c_can_read_objects(dev, priv, toread, quota); in c_can_do_rx_poll()
/linux-6.1.9/fs/ext2/ !
Dsuper.c1501 size_t toread; in ext2_quota_read() local
1510 toread = len; in ext2_quota_read()
1511 while (toread > 0) { in ext2_quota_read()
1512 tocopy = min_t(size_t, sb->s_blocksize - offset, toread); in ext2_quota_read()
1529 toread -= tocopy; in ext2_quota_read()
/linux-6.1.9/drivers/md/ !
Draid5.h266 struct bio *toread, *read, *towrite, *written; member
Draid5.c598 if (dev->toread || dev->read || dev->towrite || dev->written || in init_stripe()
601 (unsigned long long)sh->sector, i, dev->toread, in init_stripe()
1495 dev->read = rbi = dev->toread; in ops_run_biofill()
1496 dev->toread = NULL; in ops_run_biofill()
3496 bip = &sh->dev[dd_idx].toread; in stripe_bio_overlaps()
3552 bip = &sh->dev[dd_idx].toread; in __add_stripe_bio()
3733 bi = sh->dev[i].toread; in handle_failed_stripe()
3734 sh->dev[i].toread = NULL; in handle_failed_stripe()
3848 if (dev->toread || in need_this_block()
3860 if ((s->failed >= 1 && fdev[0]->toread) || in need_this_block()
[all …]
/linux-6.1.9/fs/reiserfs/ !
Dsuper.c2495 size_t toread; in reiserfs_quota_read() local
2503 toread = len; in reiserfs_quota_read()
2504 while (toread > 0) { in reiserfs_quota_read()
2505 tocopy = min_t(unsigned long, sb->s_blocksize - offset, toread); in reiserfs_quota_read()
2526 toread -= tocopy; in reiserfs_quota_read()
/linux-6.1.9/drivers/mtd/nand/raw/ !
Dnand_base.c3493 int toread = min(oobreadlen, max_oobsize); in nand_do_read_ops() local
3495 if (toread) { in nand_do_read_ops()
3497 toread); in nand_do_read_ops()
3498 oobreadlen -= toread; in nand_do_read_ops()
3597 int i, toread, sndrnd = 0, pos, ret; in nand_read_oob_syndrome() local
3620 toread = min_t(int, length, chunk); in nand_read_oob_syndrome()
3622 ret = nand_read_data_op(chip, bufpoi, toread, false, false); in nand_read_oob_syndrome()
3626 bufpoi += toread; in nand_read_oob_syndrome()
3627 length -= toread; in nand_read_oob_syndrome()
/linux-6.1.9/fs/f2fs/ !
Dsuper.c2475 size_t toread; in f2fs_quota_read() local
2484 toread = len; in f2fs_quota_read()
2485 while (toread > 0) { in f2fs_quota_read()
2486 tocopy = min_t(unsigned long, sb->s_blocksize - offset, toread); in f2fs_quota_read()
2514 toread -= tocopy; in f2fs_quota_read()
/linux-6.1.9/fs/ext4/ !
Dsuper.c7048 size_t toread; in ext4_quota_read() local
7056 toread = len; in ext4_quota_read()
7057 while (toread > 0) { in ext4_quota_read()
7058 tocopy = sb->s_blocksize - offset < toread ? in ext4_quota_read()
7059 sb->s_blocksize - offset : toread; in ext4_quota_read()
7069 toread -= tocopy; in ext4_quota_read()
/linux-6.1.9/arch/x86/kvm/ !
Dx86.c7206 unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset); in kvm_read_guest_virt_helper() local
7212 offset, toread); in kvm_read_guest_virt_helper()
7218 bytes -= toread; in kvm_read_guest_virt_helper()
7219 data += toread; in kvm_read_guest_virt_helper()
7220 addr += toread; in kvm_read_guest_virt_helper()