Home
last modified time | relevance | path

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

/freebsd-9-stable/sys/fs/tmpfs/
Dtmpfs_subr.c180 nnode->tn_mode = mode; in tmpfs_alloc_node()
1197 node->tn_mode &= ~ALLPERMS; in tmpfs_chmod()
1198 node->tn_mode |= mode & ALLPERMS; in tmpfs_chmod()
1270 if ((node->tn_mode & (S_ISUID | S_ISGID)) && (ouid != uid || ogid != gid)) { in tmpfs_chown()
1272 node->tn_mode &= ~(S_ISUID | S_ISGID); in tmpfs_chown()
Dtmpfs_vnops.c181 if ((dnode->tn_mode & S_ISTXT) && in tmpfs_lookup()
337 error = vaccess(vp->v_type, node->tn_mode, node->tn_uid, in tmpfs_access()
361 vap->va_mode = node->tn_mode; in tmpfs_getattr()
780 if (node->tn_mode & (S_ISUID | S_ISGID)) { in tmpfs_write()
782 node->tn_mode &= ~(S_ISUID | S_ISGID); in tmpfs_write()
1649 node->tn_mode, node->tn_uid, node->tn_gid, in tmpfs_print()
Dtmpfs.h207 mode_t tn_mode; member