Home
last modified time | relevance | path

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

/external/ltp/testcases/kernel/mem/hugetlb/hugemmap/
Dhugemmap05.c88 static int checksys(char *path, char *pattern, long exp_val);
106 if (checksys(path_sys_sz_huge, "HugePages_Total", length / 2)) in test_overcommit()
108 if (checksys(path_sys_sz_free, "HugePages_Free", length / 2)) in test_overcommit()
110 if (checksys(path_sys_sz_surp, "HugePages_Surp", in test_overcommit()
113 if (checksys(path_sys_sz_resv, "HugePages_Rsvd", length / 2)) in test_overcommit()
141 if (checksys(path_sys_sz_huge, "HugePages_Total", length / 2)) in test_overcommit()
143 if (checksys(path_sys_sz_free, "HugePages_Free", 0)) in test_overcommit()
145 if (checksys(path_sys_sz_surp, "HugePages_Surp", in test_overcommit()
148 if (checksys(path_sys_sz_resv, "HugePages_Rsvd", 0)) in test_overcommit()
281 static int checksys(char *path, char *string, long exp_val) in checksys() function