Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_sa.c218 if (zp->z_acl_cached == NULL || ZTOV(zp)->v_type == VLNK) in zfs_sa_upgrade()
292 &zp->z_acl_cached->z_acl_count, 8); in zfs_sa_upgrade()
294 if (zp->z_acl_cached->z_version < ZFS_ACL_VERSION_FUID) in zfs_sa_upgrade()
295 zfs_acl_xform(zp, zp->z_acl_cached, CRED()); in zfs_sa_upgrade()
297 locate.cb_aclp = zp->z_acl_cached; in zfs_sa_upgrade()
299 zfs_acl_data_locator, &locate, zp->z_acl_cached->z_acl_bytes); in zfs_sa_upgrade()
H A Dzfs_znode.c175 zp->z_acl_cached = NULL; in zfs_znode_cache_constructor()
197 ASSERT(zp->z_acl_cached == NULL); in zfs_znode_cache_destructor()
251 if (ozp->z_acl_cached) { in zfs_znode_move_impl()
252 zfs_acl_free(ozp->z_acl_cached); in zfs_znode_move_impl()
253 ozp->z_acl_cached = NULL; in zfs_znode_move_impl()
619 ASSERT(zp->z_acl_cached == NULL); in zfs_znode_sa_init()
1274 if (zp->z_acl_cached) { in zfs_rezget()
1275 zfs_acl_free(zp->z_acl_cached); in zfs_rezget()
1276 zp->z_acl_cached = NULL; in zfs_rezget()
1456 if (zp->z_acl_cached) { in zfs_znode_free()
[all …]
H A Dzfs_acl.c1091 *aclpp = zp->z_acl_cached; in zfs_acl_node_read()
1149 zp->z_acl_cached = aclp; in zfs_acl_node_read()
1230 if (zp->z_acl_cached) { in zfs_aclset_common()
1231 zfs_acl_free(zp->z_acl_cached); in zfs_aclset_common()
1232 zp->z_acl_cached = NULL; in zfs_aclset_common()
1841 aclp = zp->z_acl_cached; in zfs_getacl()
1857 ASSERT(zp->z_acl_cached); in zfs_getacl()
2075 ASSERT(zp->z_acl_cached == NULL); in zfs_setacl()
2076 zp->z_acl_cached = aclp; in zfs_setacl()
2176 aclp = zp->z_acl_cached; in zfs_zaccess_aces_check()
[all …]
H A Dsa.c1521 if (zp->z_acl_cached == NULL) { in sa_add_projid()
1628 if (zp->z_acl_cached != NULL) { in sa_add_projid()
1630 &zp->z_acl_cached->z_acl_count, 8); in sa_add_projid()
1631 if (zp->z_acl_cached->z_version < ZFS_ACL_VERSION_FUID) in sa_add_projid()
1632 zfs_acl_xform(zp, zp->z_acl_cached, CRED()); in sa_add_projid()
1633 locate.cb_aclp = zp->z_acl_cached; in sa_add_projid()
1636 zp->z_acl_cached->z_acl_bytes); in sa_add_projid()
H A Dzfs_vnops.c3611 if (zp->z_acl_cached) in zfs_setattr()
3612 zfs_acl_free(zp->z_acl_cached); in zfs_setattr()
3613 zp->z_acl_cached = aclp; in zfs_setattr()
/illumos-gate/usr/src/uts/common/fs/zfs/sys/
H A Dzfs_znode.h212 zfs_acl_t *z_acl_cached; /* cached acl */ member