Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/zfs/
H A Dzfs_sa.c320 if (zp->z_acl_cached == NULL || Z_ISLNK(ZTOTYPE(zp))) in zfs_sa_upgrade()
399 &zp->z_acl_cached->z_acl_count, 8); in zfs_sa_upgrade()
401 if (zp->z_acl_cached->z_version < ZFS_ACL_VERSION_FUID) in zfs_sa_upgrade()
402 zfs_acl_xform(zp, zp->z_acl_cached, CRED()); in zfs_sa_upgrade()
404 locate.cb_aclp = zp->z_acl_cached; in zfs_sa_upgrade()
406 zfs_acl_data_locator, &locate, zp->z_acl_cached->z_acl_bytes); in zfs_sa_upgrade()
H A Dsa.c1586 if (zp->z_acl_cached == NULL) { in sa_add_projid()
1704 if (zp->z_acl_cached != NULL) { in sa_add_projid()
1706 &zp->z_acl_cached->z_acl_count, 8); in sa_add_projid()
1707 if (zp->z_acl_cached->z_version < ZFS_ACL_VERSION_FUID) in sa_add_projid()
1708 zfs_acl_xform(zp, zp->z_acl_cached, CRED()); in sa_add_projid()
1709 locate.cb_aclp = zp->z_acl_cached; in sa_add_projid()
1712 zp->z_acl_cached->z_acl_bytes); in sa_add_projid()
/freebsd/sys/contrib/openzfs/module/os/linux/zfs/
H A Dzfs_znode_os.c120 zp->z_acl_cached = NULL; in zfs_znode_cache_constructor()
143 ASSERT0P(zp->z_acl_cached); in zfs_znode_cache_destructor()
326 ASSERT0P(zp->z_acl_cached); in zfs_znode_sa_init()
385 if (zp->z_acl_cached) { in zfs_inode_destroy()
386 zfs_acl_free(zp->z_acl_cached); in zfs_inode_destroy()
387 zp->z_acl_cached = NULL; in zfs_inode_destroy()
529 ASSERT0P(zp->z_acl_cached); in zfs_znode_alloc()
1216 if (zp->z_acl_cached) { in zfs_rezget()
1217 zfs_acl_free(zp->z_acl_cached); in zfs_rezget()
1218 zp->z_acl_cached = NULL; in zfs_rezget()
H A Dzfs_acl.c1077 if (zp->z_acl_cached && !will_modify) { in zfs_acl_node_read()
1078 *aclpp = zp->z_acl_cached; in zfs_acl_node_read()
1136 zp->z_acl_cached = aclp; in zfs_acl_node_read()
1371 if (zp->z_acl_cached) { in zfs_aclset_common()
1372 zfs_acl_free(zp->z_acl_cached); in zfs_aclset_common()
1373 zp->z_acl_cached = NULL; in zfs_aclset_common()
2200 ASSERT0P(zp->z_acl_cached); in zfs_setacl()
2201 zp->z_acl_cached = aclp; in zfs_setacl()
2312 ASSERT(zp->z_acl_cached); in zfs_zaccess_aces_check()
H A Dzfs_ctldir.c522 ASSERT0P(zp->z_acl_cached); in zfsctl_inode_alloc()
H A Dzfs_vnops_os.c2528 if (zp->z_acl_cached) in zfs_setattr_idmap()
2529 zfs_acl_free(zp->z_acl_cached); in zfs_setattr_idmap()
2530 zp->z_acl_cached = aclp; in zfs_setattr_idmap()
/freebsd/sys/contrib/openzfs/module/os/freebsd/zfs/
H A Dzfs_znode_os.c140 zp->z_acl_cached = NULL; in zfs_znode_cache_constructor()
163 ASSERT0P(zp->z_acl_cached); in zfs_znode_cache_destructor()
350 ASSERT0P(zp->z_acl_cached); in zfs_znode_sa_init()
1129 if (zp->z_acl_cached) { in zfs_rezget()
1130 zfs_acl_free(zp->z_acl_cached); in zfs_rezget()
1131 zp->z_acl_cached = NULL; in zfs_rezget()
1339 if (zp->z_acl_cached) { in zfs_znode_free()
1340 zfs_acl_free(zp->z_acl_cached); in zfs_znode_free()
1341 zp->z_acl_cached = NULL; in zfs_znode_free()
H A Dzfs_acl.c1060 if (zp->z_acl_cached && !will_modify) { in zfs_acl_node_read()
1061 *aclpp = zp->z_acl_cached; in zfs_acl_node_read()
1108 zp->z_acl_cached = aclp; in zfs_acl_node_read()
1186 if (zp->z_acl_cached) { in zfs_aclset_common()
1187 zfs_acl_free(zp->z_acl_cached); in zfs_aclset_common()
1188 zp->z_acl_cached = NULL; in zfs_aclset_common()
2011 ASSERT0P(zp->z_acl_cached); in zfs_setacl()
2012 zp->z_acl_cached = aclp; in zfs_setacl()
2123 ASSERT3P(zp->z_acl_cached, !=, NULL); in zfs_zaccess_aces_check()
H A Dzfs_vnops_os.c2863 if (zp->z_acl_cached) in zfs_setattr()
2864 zfs_acl_free(zp->z_acl_cached); in zfs_setattr()
2865 zp->z_acl_cached = aclp; in zfs_setattr()
/freebsd/sys/contrib/openzfs/include/sys/
H A Dzfs_znode.h223 zfs_acl_t *z_acl_cached; /* cached acl */ member