Home
last modified time | relevance | path

Searched refs:bouncesz (Results 1 – 1 of 1) sorted by relevance

/drivers/mmc/card/
Dqueue.c139 unsigned int bouncesz; in mmc_init_queue() local
141 bouncesz = MMC_QUEUE_BOUNCESZ; in mmc_init_queue()
143 if (bouncesz > host->max_req_size) in mmc_init_queue()
144 bouncesz = host->max_req_size; in mmc_init_queue()
145 if (bouncesz > host->max_seg_size) in mmc_init_queue()
146 bouncesz = host->max_seg_size; in mmc_init_queue()
147 if (bouncesz > (host->max_blk_count * 512)) in mmc_init_queue()
148 bouncesz = host->max_blk_count * 512; in mmc_init_queue()
150 if (bouncesz > 512) { in mmc_init_queue()
151 mq->bounce_buf = kmalloc(bouncesz, GFP_KERNEL); in mmc_init_queue()
[all …]