Lines Matching refs:rawsize
851 size_t remaining = btt->rawsize;
874 if (remaining == btt->rawsize) {
935 size_t remaining = btt->rawsize;
1550 * @rawsize: raw size in bytes of the backing device
1564 static struct btt *btt_init(struct nd_btt *nd_btt, unsigned long long rawsize,
1578 btt->rawsize = rawsize;
1598 btt->num_arenas = (rawsize / ARENA_MAX_SIZE) +
1599 ((rawsize % ARENA_MAX_SIZE) ? 1 : 0);
1600 dev_dbg(dev, "init: %d arenas for %llu rawsize\n",
1601 btt->num_arenas, rawsize);
1651 size_t size, rawsize;
1676 rawsize = size - nd_btt->initial_offset;
1677 if (rawsize < ARENA_MIN_SIZE) {
1684 btt = btt_init(nd_btt, rawsize, nd_btt->lbasize, nd_btt->uuid,