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