| /linux/net/sunrpc/auth_gss/ |
| H A D | gss_krb5_wrap.c | 59 unsigned int this_len, i; in rotate_buf_a_little() local 65 this_len = min(LOCAL_BUF_LEN, buf->len - (i + shift)); in rotate_buf_a_little() 66 read_bytes_from_xdr_buf(buf, i+shift, tmp, this_len); in rotate_buf_a_little() 67 write_bytes_to_xdr_buf(buf, i, tmp, this_len); in rotate_buf_a_little()
|
| /linux/net/sunrpc/ |
| H A D | xdr.c | 1855 unsigned int this_len; in __read_bytes_from_xdr_buf() local 1857 this_len = min_t(unsigned int, len, subbuf->head[0].iov_len); in __read_bytes_from_xdr_buf() 1858 memcpy(obj, subbuf->head[0].iov_base, this_len); in __read_bytes_from_xdr_buf() 1859 len -= this_len; in __read_bytes_from_xdr_buf() 1860 obj += this_len; in __read_bytes_from_xdr_buf() 1861 this_len = min_t(unsigned int, len, subbuf->page_len); in __read_bytes_from_xdr_buf() 1862 _copy_from_pages(obj, subbuf->pages, subbuf->page_base, this_len); in __read_bytes_from_xdr_buf() 1863 len -= this_len; in __read_bytes_from_xdr_buf() 1864 obj += this_len; in __read_bytes_from_xdr_buf() 1865 this_len = min_t(unsigned int, len, subbuf->tail[0].iov_len); in __read_bytes_from_xdr_buf() [all …]
|
| /linux/fs/btrfs/ |
| H A D | props.c | 165 u32 total_len, cur, this_len; in iterate_object_props() local 201 this_len = sizeof(*di) + name_len + data_len; in iterate_object_props() 240 cur += this_len; in iterate_object_props() 241 di = (struct btrfs_dir_item *)((char *) di + this_len); in iterate_object_props()
|
| /linux/io_uring/ |
| H A D | kbuf.c | 39 u32 buf_len, this_len; in io_kbuf_inc_commit() local 43 this_len = min_t(u32, len, buf_len); in io_kbuf_inc_commit() 44 buf_len -= this_len; in io_kbuf_inc_commit() 46 if (buf_len || !this_len) { in io_kbuf_inc_commit() 47 WRITE_ONCE(buf->addr, READ_ONCE(buf->addr) + this_len); in io_kbuf_inc_commit() 53 len -= this_len; in io_kbuf_inc_commit()
|
| H A D | net.c | 485 int this_len = min_t(int, iov[nbufs].iov_len, ret); in io_bundle_nbufs() local 488 ret -= this_len; in io_bundle_nbufs()
|
| /linux/drivers/scsi/arm/ |
| H A D | acornscsi.c | 898 unsigned int this_len; in acornscsi_data_read() local 901 this_len = (1 << 12) - offset; in acornscsi_data_read() 903 this_len = len; in acornscsi_data_read() 905 __acornscsi_in(host->base + (offset << 1), ptr, this_len); in acornscsi_data_read() 907 offset += this_len; in acornscsi_data_read() 908 ptr += this_len; in acornscsi_data_read() 909 len -= this_len; in acornscsi_data_read() 943 unsigned int this_len; in acornscsi_data_write() local 946 this_len = (1 << 12) - offset; in acornscsi_data_write() 948 this_len = len; in acornscsi_data_write() [all …]
|
| /linux/arch/sparc/kernel/ |
| H A D | ldc.c | 2295 unsigned long this_len = cookies[i].cookie_size; in ldc_copy() local 2301 if (this_off > this_len) in ldc_copy() 2302 this_off = this_len; in ldc_copy() 2305 this_len -= this_off; in ldc_copy() 2306 if (!this_len) in ldc_copy() 2311 if (this_len > len) in ldc_copy() 2312 this_len = len; in ldc_copy() 2319 this_len, &actual_len); in ldc_copy() 2334 if (actual_len == this_len) in ldc_copy() 2337 this_len -= actual_len; in ldc_copy()
|
| /linux/fs/proc/ |
| H A D | base.c | 924 size_t this_len = min_t(size_t, count, PAGE_SIZE); in mem_rw() local 926 if (write && copy_from_user(page, buf, this_len)) { in mem_rw() 931 this_len = access_remote_vm(mm, addr, page, this_len, flags); in mem_rw() 932 if (!this_len) { in mem_rw() 938 if (!write && copy_to_user(buf, page, this_len)) { in mem_rw() 943 buf += this_len; in mem_rw() 944 addr += this_len; in mem_rw() 945 copied += this_len; in mem_rw() 946 count -= this_len; in mem_rw() 1033 size_t this_len, max_len; in environ_read() local [all …]
|
| /linux/fs/overlayfs/ |
| H A D | copy_up.c | 300 size_t this_len = OVL_COPY_UP_CHUNK_SIZE; in ovl_copy_up_file() local 303 if (len < this_len) in ovl_copy_up_file() 304 this_len = len; in ovl_copy_up_file() 345 error = ovl_verify_area(old_pos, new_pos, this_len, len); in ovl_copy_up_file() 351 this_len, SPLICE_F_MOVE); in ovl_copy_up_file()
|
| /linux/fs/fuse/ |
| H A D | virtio_fs.c | 1277 unsigned int this_len; in sg_count_fuse_folios() local 1280 this_len = min(folio_descs[i].length, total_len); in sg_count_fuse_folios() 1281 total_len -= this_len; in sg_count_fuse_folios() 1328 unsigned int this_len; in sg_init_fuse_folios() local 1332 this_len = min(folio_descs[i].length, total_len); in sg_init_fuse_folios() 1333 sg_set_folio(&sg[i], folios[i], this_len, folio_descs[i].offset); in sg_init_fuse_folios() 1334 total_len -= this_len; in sg_init_fuse_folios()
|
| /linux/fs/ |
| H A D | splice.c | 715 size_t this_len = buf->len; in iter_file_splice_write() local 718 if (!this_len) in iter_file_splice_write() 720 this_len = min(this_len, left); in iter_file_splice_write() 729 bvec_set_page(&array[n], buf->page, this_len, in iter_file_splice_write() 731 left -= this_len; in iter_file_splice_write()
|
| /linux/crypto/ |
| H A D | testmgr.c | 1021 unsigned int this_len; in generate_random_sgl_divisions() local 1025 this_len = remaining; in generate_random_sgl_divisions() 1027 this_len = (remaining + 1) / 2; in generate_random_sgl_divisions() 1029 this_len = prandom_u32_inclusive(rng, 1, remaining); in generate_random_sgl_divisions() 1030 div->proportion_of_total = this_len; in generate_random_sgl_divisions() 1080 this_len / 100, this_len % 100, in generate_random_sgl_divisions() 1083 div->offset, this_len == remaining ? "" : ", "); in generate_random_sgl_divisions() 1084 remaining -= this_len; in generate_random_sgl_divisions()
|
| /linux/drivers/net/ethernet/sun/ |
| H A D | niu.c | 6702 unsigned int this_len = len; in niu_start_xmit() local 6704 if (this_len > MAX_TX_DESC_LEN) in niu_start_xmit() 6705 this_len = MAX_TX_DESC_LEN; in niu_start_xmit() 6707 niu_set_txd(rp, prod, mapping, this_len, mrk, nfg); in niu_start_xmit() 6711 mapping += this_len; in niu_start_xmit() 6712 len -= this_len; in niu_start_xmit()
|
| /linux/drivers/md/ |
| H A D | dm-integrity.c | 1997 unsigned int this_len; in integrity_metadata() local 2001 this_len = min(biv.bv_len, data_to_process); in integrity_metadata() 2003 this_len, dio->op == REQ_OP_READ ? TAG_READ : TAG_WRITE); in integrity_metadata() 2006 data_to_process -= this_len; in integrity_metadata()
|