Lines Matching refs:rawsize
851 size_t remaining = btt->rawsize;
874 if (remaining == btt->rawsize) {
935 size_t remaining = btt->rawsize;
1573 * @rawsize: raw size in bytes of the backing device
1587 static struct btt *btt_init(struct nd_btt *nd_btt, unsigned long long rawsize,
1600 btt->rawsize = rawsize;
1620 btt->num_arenas = (rawsize / ARENA_MAX_SIZE) +
1621 ((rawsize % ARENA_MAX_SIZE) ? 1 : 0);
1622 dev_dbg(dev, "init: %d arenas for %llu rawsize\n",
1623 btt->num_arenas, rawsize);
1673 size_t size, rawsize;
1698 rawsize = size - nd_btt->initial_offset;
1699 if (rawsize < ARENA_MIN_SIZE) {
1706 btt = btt_init(nd_btt, rawsize, nd_btt->lbasize, nd_btt->uuid,