···12081208 * by this leaf.12091209 */12101210 l2size =12111211- min((int)leaf[word], NLSTOL2BSZ(nwords));12111211+ min_t(int, leaf[word], NLSTOL2BSZ(nwords));1212121212131213 /* determine how many words were handled.12141214 */···1902190219031903 /* determine how many blocks to allocate from this dmap.19041904 */19051905- nb = min(n, (s64)BPERDMAP);19051905+ nb = min_t(s64, n, BPERDMAP);1906190619071907 /* allocate the blocks from the dmap.19081908 */···22602260 * of bits being allocated and the l2 number22612261 * of bits currently described by this leaf.22622262 */22632263- size = min((int)leaf[word], NLSTOL2BSZ(nwords));22632263+ size = min_t(int, leaf[word],22642264+ NLSTOL2BSZ(nwords));2264226522652266 /* update the leaf to reflect the allocation.22662267 * in addition to setting the leaf value to···35643563 if (mp == NULL)35653564 goto errout;3566356535673567- n = min(nblocks, (s64)BPERDMAP);35663566+ n = min_t(s64, nblocks, BPERDMAP);35683567 }3569356835703569 dp = (struct dmap *) mp->data;