Home
last modified time | relevance | path

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

/freebsd/sys/fs/tmpfs/
H A Dtmpfs_vnops.c309 if (node->tn_links < 1) in tmpfs_open()
462 sb->st_nlink = node->tn_links; in tmpfs_stat()
510 vap->va_nlink = node->tn_links; in tmpfs_getattr()
802 if (node->tn_links == TMPFS_LINK_MAX) { in tmpfs_link()
1195 tdnode->tn_links++; in tmpfs_rename()
1200 fdnode->tn_links--; in tmpfs_rename()
1361 node->tn_links--; in tmpfs_rmdir()
1369 dnode->tn_links--; in tmpfs_rmdir()
1528 if (node->tn_links == 0) in tmpfs_inactive()
1544 if (node->tn_links == 0) in tmpfs_need_inactive()
[all …]
H A Dtmpfs_subr.c330 node->tn_links = 0; in tmpfs_node_ctor()
649 nnode->tn_links++; in tmpfs_alloc_node()
651 nnode->tn_dir.tn_parent->tn_links++; in tmpfs_alloc_node()
918 node->tn_links++; in tmpfs_alloc_dirent()
941 MPASS(node->tn_links > 0); in tmpfs_free_dirent()
942 node->tn_links--; in tmpfs_free_dirent()
1226 MPASS(dnode->tn_links <= TMPFS_LINK_MAX); in tmpfs_alloc_file()
1227 if (dnode->tn_links == TMPFS_LINK_MAX) { in tmpfs_alloc_file()
H A Dtmpfs.h213 int tn_links; /* (v) */ member