this_step         620 drivers/md/dm-bufio.c 		unsigned this_step = min((unsigned)(PAGE_SIZE - offset_in_page(ptr)), len);
this_step         621 drivers/md/dm-bufio.c 		if (!bio_add_page(bio, virt_to_page(ptr), this_step,
this_step         627 drivers/md/dm-bufio.c 		len -= this_step;
this_step         628 drivers/md/dm-bufio.c 		ptr += this_step;
this_step         807 drivers/md/dm-integrity.c 		size_t this_step;
this_step         822 drivers/md/dm-integrity.c 		this_step = min(n_bytes, (size_t)PAGE_SIZE - pl_offset);
this_step         827 drivers/md/dm-integrity.c 		async_xor(dst_page, src_pages, pl_offset, 2, this_step, &submit);
this_step         831 drivers/md/dm-integrity.c 		n_bytes -= this_step;
this_step         109 drivers/md/dm-verity-target.c 			size_t this_step = min_t(size_t, len, PAGE_SIZE - offset_in_page(data));
this_step         110 drivers/md/dm-verity-target.c 			flush_kernel_vmap_range((void *)data, this_step);
this_step         112 drivers/md/dm-verity-target.c 			sg_set_page(&sg, vmalloc_to_page(data), this_step, offset_in_page(data));
this_step         113 drivers/md/dm-verity-target.c 			ahash_request_set_crypt(req, &sg, NULL, this_step);
this_step         117 drivers/md/dm-verity-target.c 			data += this_step;
this_step         118 drivers/md/dm-verity-target.c 			len -= this_step;