Lines Matching defs:page
241 * represent the cost of a single page worth of discard with
287 * The shortcoming primarily stems from the fact that, unlike for page
864 * *@page per-page cost 1s / (@bps / 4096)
865 * *@seqio base cost of a seq IO max((1s / @seqiops) - *@page, 0)
866 * @randiops base cost of a rand IO max((1s / @randiops) - *@page, 0)
869 u64 *page, u64 *seqio, u64 *randio)
873 *page = *seqio = *randio = 0;
879 *page = DIV64_U64_ROUND_UP(VTIME_PER_SEC, bps_pages);
881 *page = 1;
886 if (v > *page)
887 *seqio = v - *page;
892 if (v > *page)
893 *randio = v - *page;