Searched refs:hsize (Results 1 – 1 of 1) sorted by relevance
/mm/ |
D | hugetlb_cgroup.c | 342 static char *mem_fmt(char *buf, int size, unsigned long hsize) in mem_fmt() argument 344 if (hsize >= (1UL << 30)) in mem_fmt() 345 snprintf(buf, size, "%luGB", hsize >> 30); in mem_fmt() 346 else if (hsize >= (1UL << 20)) in mem_fmt() 347 snprintf(buf, size, "%luMB", hsize >> 20); in mem_fmt() 349 snprintf(buf, size, "%luKB", hsize >> 10); in mem_fmt()
|