Searched refs:stmnt (Results 1 – 1 of 1) sorted by relevance
/linux/samples/vfs/ |
H A D | test-list-all-mounts.c | 15 struct statmount *stmnt, size_t bufsize, in __statmount() argument 25 return syscall(__NR_statmount, &req, stmnt, bufsize, flags); in __statmount() 32 struct statmount *stmnt = NULL, *tmp = NULL; in sys_statmount() local 36 tmp = realloc(stmnt, bufsize); in sys_statmount() 40 stmnt = tmp; in sys_statmount() 41 ret = __statmount(mnt_id, mnt_ns_id, mask, stmnt, bufsize, flags); in sys_statmount() 43 return stmnt; in sys_statmount() 54 free(stmnt); in sys_statmount() 120 struct statmount *stmnt; in main() local 124 stmnt = sys_statmount(last_mnt_id, info.mnt_ns_id, in main() [all …]
|