On Tue, 29 Jul 2014, Joe Perches wrote: > Maybe yet another vsprintf extension? > > Maybe %pH<vartype> where vartype is one of [hh, h, u, ul, ull] > with something like > u64 t1 = (u64)*(appropriate cast)vartype; > u64 t2 = t1; > int index = 0; > while ((t1 >>= 10)) { > index++; > t2 >>= 10; > } > > to output the equivalent of > %llu%s, t2, "bkmgtpezy"[index] > ala dump_pagetables > Prarit has a good point about unnecessarily rounding the value, which is exactly what the patch is addressing, and it wouldn't be good to be changing the units depending on the value if anybody is using it for anything other than reading it with their own two eyes. Since EFI_PAGE_SIZE will always be in KB, it makes sense to export it in KB. -- To unsubscribe from this list: send the line "unsubscribe linux-efi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html