Home
last modified time | relevance | path

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

/linux-3.4.99/arch/x86/kernel/cpu/mtrr/
Dgeneric.c112 static u8 __mtrr_type_lookup(u64 start, u64 end, u64 *partial_end, int *repeat) in __mtrr_type_lookup() argument
185 *partial_end = base + get_mtrr_size(mask); in __mtrr_type_lookup()
187 *partial_end = base; in __mtrr_type_lookup()
189 if (unlikely(*partial_end <= start)) { in __mtrr_type_lookup()
191 *partial_end = start + PAGE_SIZE; in __mtrr_type_lookup()
194 end = *partial_end - 1; /* end is inclusive */ in __mtrr_type_lookup()
231 u64 partial_end; in mtrr_type_lookup() local
233 type = __mtrr_type_lookup(start, end, &partial_end, &repeat); in mtrr_type_lookup()
242 start = partial_end; in mtrr_type_lookup()
243 type = __mtrr_type_lookup(start, end, &partial_end, &repeat); in mtrr_type_lookup()