pg_datalen        267 drivers/md/dm-log-writes.c 	int num_pages, bio_pages, pg_datalen, pg_sectorlen, i;
pg_datalen        293 drivers/md/dm-log-writes.c 			pg_datalen = min_t(int, datalen, PAGE_SIZE);
pg_datalen        294 drivers/md/dm-log-writes.c 			pg_sectorlen = ALIGN(pg_datalen, lc->sectorsize);
pg_datalen        303 drivers/md/dm-log-writes.c 			memcpy(ptr, data, pg_datalen);
pg_datalen        304 drivers/md/dm-log-writes.c 			if (pg_sectorlen > pg_datalen)
pg_datalen        305 drivers/md/dm-log-writes.c 				memset(ptr + pg_datalen, 0, pg_sectorlen - pg_datalen);
pg_datalen        315 drivers/md/dm-log-writes.c 			datalen -= pg_datalen;
pg_datalen        316 drivers/md/dm-log-writes.c 			data	+= pg_datalen;