Searched refs:M_BFS (Results 1 - 3 of 3) sorted by relevance

/netbsd-current/sys/fs/sysvbfs/
H A Dbfs.c46 MALLOC_JUSTDEFINE(M_BFS, "sysvbfs core", "sysvbfs internal structures");
93 if ((bfs = (void *)__MALLOC(sizeof(struct bfs), M_BFS, M_WAITOK)) == 0)
106 if ((p = (void *)__MALLOC(memsize, M_BFS, M_WAITOK)) == 0) {
117 if ((p = (void *)__MALLOC(memsize, M_BFS, M_WAITOK)) == 0) {
142 __FREE(bfs->super_block, bfs->super_block_size, M_BFS);
144 __FREE(bfs->dirent, bfs->dirent_size, M_BFS);
145 __FREE(bfs, sizeof(struct bfs), M_BFS);
H A Dsysvbfs_vfsops.c411 MALLOC_DECLARE(M_BFS); variable
420 malloc_type_attach(M_BFS);
440 malloc_type_detach(M_BFS);
H A Dsysvbfs_vnops.c61 MALLOC_DECLARE(M_BFS); variable
639 dp = malloc(sizeof(struct dirent), M_BFS, M_WAITOK | M_ZERO);
666 free(dp, M_BFS);
673 free(dp, M_BFS);

Completed in 193 milliseconds