| /freebsd-14.2/sys/contrib/openzfs/module/os/freebsd/zfs/ |
| H A D | zfs_acl.c | 450 return (zfs_acl_version(zp->z_zfsvfs->z_version)); in zfs_acl_version_zp() 461 aclp->z_version = vers; in zfs_acl_alloc() 549 if (aclp->z_version < ZFS_ACL_VERSION_FUID) in zfs_ace_valid() 833 aclp->z_version = ZFS_ACL_VERSION; in zfs_acl_xform() 1206 (zfsvfs->z_version >= ZPL_VERSION_FUID)) in zfs_aclset_common() 1241 aclp->z_version != acl_phys.z_acl_version) { in zfs_aclset_common() 1300 acl_phys.z_acl_version = aclp->z_version; in zfs_aclset_common() 1503 aclp = zfs_acl_alloc(paclp->z_version); in zfs_acl_inherit() 1842 if (aclp->z_version == ZFS_ACL_VERSION_FUID) in zfs_getacl() 1890 if (aclp->z_version == ZFS_ACL_VERSION_INITIAL) { in zfs_vsec_2_aclp() [all …]
|
| H A D | zfs_vfsops.c | 805 error = zfs_get_zplprop(os, ZFS_PROP_VERSION, &zfsvfs->z_version); in zfsvfs_init() 808 if (zfsvfs->z_version > in zfsvfs_init() 812 "this file system.", (u_longlong_t)zfsvfs->z_version, in zfsvfs_init() 844 zfsvfs->z_use_fuids = USE_FUIDS(zfsvfs->z_version, zfsvfs->z_os); in zfsvfs_init() 845 zfsvfs->z_use_sa = USE_SA(zfsvfs->z_version, zfsvfs->z_os); in zfsvfs_init() 865 if (zfsvfs->z_version >= ZPL_VERSION_SA) in zfsvfs_init() 1170 zfsvfs->z_use_fuids = USE_FUIDS(zfsvfs->z_version, zfsvfs->z_os); in zfs_set_fuid_feature() 1171 zfsvfs->z_use_sa = USE_SA(zfsvfs->z_version, zfsvfs->z_os); in zfs_set_fuid_feature() 2192 if (newvers < zfsvfs->z_version) in zfs_set_version() 2237 "from %ju to %ju", (uintmax_t)zfsvfs->z_version, in zfs_set_version() [all …]
|
| H A D | zfs_znode.c | 786 } else if (acl_ids->z_aclp->z_version >= ZFS_ACL_VERSION_FUID) { in zfs_mknode() 820 acl_ids->z_aclp->z_version < ZFS_ACL_VERSION_FUID) { in zfs_mknode() 1752 zfsvfs->z_version = version; in zfs_create_fs()
|
| H A D | zfs_dir.c | 566 if (zp->z_zfsvfs->z_version >= ZPL_VERSION_DIRENT_TYPE) in zfs_dirent()
|
| H A D | zfs_vnops_os.c | 2630 if (zfsvfs->z_version >= ZPL_VERSION_FUID && in zfs_setattr()
|
| /freebsd-14.2/sys/contrib/openzfs/module/os/linux/zfs/ |
| H A D | zfs_acl.c | 448 return (zfs_acl_version(ZTOZSB(zp)->z_version)); in zfs_acl_version_zp() 459 aclp->z_version = vers; in zfs_acl_alloc() 547 if (aclp->z_version < ZFS_ACL_VERSION_FUID) in zfs_ace_valid() 831 aclp->z_version = ZFS_ACL_VERSION; in zfs_acl_xform() 1391 (zfsvfs->z_version >= ZPL_VERSION_FUID)) in zfs_aclset_common() 1393 ASSERT(aclp->z_version >= ZFS_ACL_VERSION_FUID); in zfs_aclset_common() 1485 acl_phys.z_acl_version = aclp->z_version; in zfs_aclset_common() 1686 aclp = zfs_acl_alloc(paclp->z_version); in zfs_acl_inherit() 2032 if (aclp->z_version == ZFS_ACL_VERSION_FUID) in zfs_getacl() 2080 if (aclp->z_version == ZFS_ACL_VERSION_INITIAL) { in zfs_vsec_2_aclp() [all …]
|
| H A D | zfs_vfsops.c | 633 error = zfs_get_zplprop(os, ZFS_PROP_VERSION, &zfsvfs->z_version); in zfsvfs_init() 636 if (zfsvfs->z_version > in zfsvfs_init() 640 "this file system.\n", (u_longlong_t)zfsvfs->z_version, in zfsvfs_init() 671 zfsvfs->z_use_fuids = USE_FUIDS(zfsvfs->z_version, zfsvfs->z_os); in zfsvfs_init() 672 zfsvfs->z_use_sa = USE_SA(zfsvfs->z_version, zfsvfs->z_os); in zfsvfs_init() 765 if (zfsvfs->z_version >= ZPL_VERSION_SA) in zfsvfs_init() 970 zfsvfs->z_use_fuids = USE_FUIDS(zfsvfs->z_version, zfsvfs->z_os); in zfs_set_fuid_feature() 971 zfsvfs->z_use_sa = USE_SA(zfsvfs->z_version, zfsvfs->z_os); in zfs_set_fuid_feature() 2004 if (newvers < zfsvfs->z_version) in zfs_set_version() 2049 "from %llu to %llu", zfsvfs->z_version, newvers); in zfs_set_version() [all …]
|
| H A D | zfs_znode.c | 922 } else if (acl_ids->z_aclp->z_version >= ZFS_ACL_VERSION_FUID) { in zfs_mknode() 965 acl_ids->z_aclp->z_version < ZFS_ACL_VERSION_FUID) { in zfs_mknode() 1947 zfsvfs->z_version = version; in zfs_create_fs()
|
| H A D | zfs_dir.c | 786 if (ZTOZSB(zp)->z_version >= ZPL_VERSION_DIRENT_TYPE) in zfs_dirent()
|
| H A D | zfs_vnops_os.c | 2289 if (zfsvfs->z_version >= ZPL_VERSION_FUID && in zfs_setattr()
|
| /freebsd-14.2/sys/contrib/openzfs/include/sys/ |
| H A D | zfs_acl.h | 164 uint_t z_version; /* version of ACL */ member
|
| /freebsd-14.2/sys/contrib/openzfs/include/os/linux/zfs/sys/ |
| H A D | zfs_vfsops_os.h | 121 uint64_t z_version; /* ZPL version */ member
|
| /freebsd-14.2/sys/contrib/openzfs/include/os/freebsd/zfs/sys/ |
| H A D | zfs_vfsops_os.h | 106 uint64_t z_version; /* ZPL version */ member
|
| /freebsd-14.2/sys/contrib/openzfs/module/zfs/ |
| H A D | zfs_quota.c | 291 if (zfsvfs->z_version < ZPL_VERSION_USERSPACE) in zfs_set_userquota()
|
| H A D | zfs_sa.c | 407 if (zp->z_acl_cached->z_version < ZFS_ACL_VERSION_FUID) in zfs_sa_upgrade()
|
| H A D | zfs_log.c | 847 txtype = (ZTOZSB(zp)->z_version < ZPL_VERSION_FUID) ? in zfs_log_acl()
|
| H A D | zfs_replay.c | 970 zfsvfs->z_version >= ZPL_VERSION_INITIAL) in zfs_replay_setattr()
|
| H A D | sa.c | 1655 if (zp->z_acl_cached->z_version < ZFS_ACL_VERSION_FUID) in sa_add_projid()
|