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-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to