Lines Matching defs:sg_bytes
108 size_t off, sg_bytes;
123 sg_bytes = min(remaining, sg->length - *offset);
130 sg_bytes = min(sg_bytes,
134 *crc = crc32(*crc, buf, sg_bytes);
135 memcpy((char *)page_addr + (off & ~PAGE_MASK), buf, sg_bytes);
137 buf += sg_bytes;
138 *offset += sg_bytes;
139 remaining -= sg_bytes;
140 copy_len += sg_bytes;