Home
last modified time | relevance | path

Searched refs:znode (Results 1 – 18 of 18) sorted by relevance

/f-stack/freebsd/contrib/openzfs/include/sys/
H A Dzfs_acl.h204 struct znode;
208 int zfs_acl_ids_create(struct znode *, int, vattr_t *,
219 int zfs_fastaccesschk_execute(struct znode *, cred_t *);
222 extern int zfs_acl_access(struct znode *, int, cred_t *);
224 int zfs_zaccess_delete(struct znode *, struct znode *, cred_t *);
225 int zfs_zaccess_rename(struct znode *, struct znode *,
226 struct znode *, struct znode *, cred_t *cr);
231 uint64_t zfs_external_acl(struct znode *);
232 int zfs_znode_acl_version(struct znode *);
233 int zfs_acl_size(struct znode *, int *);
[all …]
H A Dzfs_sa.h137 int zfs_sa_readlink(struct znode *, uio_t *);
138 void zfs_sa_symlink(struct znode *, char *link, int len, dmu_tx_t *);
139 void zfs_sa_get_scanstamp(struct znode *, xvattr_t *);
140 void zfs_sa_set_scanstamp(struct znode *, xvattr_t *, dmu_tx_t *);
141 int zfs_sa_get_xattr(struct znode *);
142 int zfs_sa_set_xattr(struct znode *);
144 void zfs_sa_upgrade_txholds(dmu_tx_t *, struct znode *);
H A Dzfs_fuid.h100 struct znode;
109 extern void zfs_fuid_map_ids(struct znode *zp, cred_t *cr,
H A Dzfs_znode.h176 struct znode *dl_dzp; /* directory znode */
180 typedef struct znode { struct
/f-stack/freebsd/contrib/openzfs/include/os/freebsd/zfs/sys/
H A Dzfs_znode_impl.h103 #define VTOZ(VP) ((struct znode *)(VP)->v_data)
105 #define ITOZ(VP) ((struct znode *)(VP)->v_data)
173 extern void zfs_tstamp_update_setup_ext(struct znode *,
175 extern void zfs_znode_free(struct znode *);
180 extern int zfs_znode_parent_and_name(struct znode *zp, struct znode **dzpp,
182 extern void zfs_inode_update(struct znode *);
H A Dzfs_vfsops_os.h66 struct znode;
/f-stack/freebsd/contrib/openzfs/include/os/linux/zfs/sys/
H A Dzfs_znode_impl.h57 #define ZTOI(znode) (&((znode)->z_inode)) argument
59 #define ZTOZSB(znode) ((zfsvfs_t *)(ZTOI(znode)->i_sb->s_fs_info)) argument
156 struct znode;
161 extern void zfs_inode_update(struct znode *);
H A Dpolicy.h38 struct znode;
49 int secpolicy_vnode_setid_retain(struct znode *, const cred_t *, boolean_t);
H A Dzfs_vfsops_os.h46 struct znode;
/f-stack/freebsd/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dpolicy.h37 struct znode;
61 int secpolicy_vnode_setid_retain(struct znode *zp, cred_t *cr,
/f-stack/app/redis-5.0.5/src/
H A Dobject.c836 zskiplistNode *znode = zsl->header->level[0].forward; in objectComputeSize() local
838 while(znode != NULL && samples < sample_size) { in objectComputeSize()
839 elesize += sdsAllocSize(znode->ele); in objectComputeSize()
840 elesize += sizeof(struct dictEntry) + zmalloc_size(znode); in objectComputeSize()
842 znode = znode->level[0].forward; in objectComputeSize()
H A Dgeo.c646 zskiplistNode *znode; in georadiusGeneric() local
653 znode = zslInsert(zs->zsl,score,gp->member); in georadiusGeneric()
654 serverAssert(dictAdd(zs->dict,gp->member,&znode->score) == DICT_OK); in georadiusGeneric()
H A Dt_zset.c1373 zskiplistNode *znode; in zsetAdd() local
1397 znode = zslUpdateScore(zs->zsl,curscore,ele,score); in zsetAdd()
1401 dictGetVal(de) = &znode->score; /* Update score ptr. */ in zsetAdd()
1407 znode = zslInsert(zs->zsl,score,ele); in zsetAdd()
1408 serverAssert(dictAdd(zs->dict,ele,&znode->score) == DICT_OK); in zsetAdd()
2186 zskiplistNode *znode; in zunionInterGenericCommand() local
2305 znode = zslInsert(dstzset->zsl,score,tmp); in zunionInterGenericCommand()
2306 dictAdd(dstzset->dict,tmp,&znode->score); in zunionInterGenericCommand()
2371 znode = zslInsert(dstzset->zsl,score,ele); in zunionInterGenericCommand()
2372 dictAdd(dstzset->dict,ele,&znode->score); in zunionInterGenericCommand()
H A Drdb.c1468 zskiplistNode *znode; in rdbLoadObject() local
1482 znode = zslInsert(zs->zsl,score,sdsele); in rdbLoadObject()
1483 dictAdd(zs->dict,sdsele,&znode->score); in rdbLoadObject()
/f-stack/freebsd/contrib/openzfs/module/os/linux/zfs/
H A Dpolicy.c207 secpolicy_vnode_setid_retain(struct znode *zp __maybe_unused, const cred_t *cr, in secpolicy_vnode_setid_retain()
H A Dzfs_acl.c1053 zfs_acl_node_read(struct znode *zp, boolean_t have_lock, zfs_acl_t **aclpp, in zfs_acl_node_read()
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dzfs_vnops.c190 zfs_read(struct znode *zp, uio_t *uio, int ioflag, cred_t *cr) in zfs_read()
/f-stack/freebsd/contrib/openzfs/module/os/freebsd/zfs/
H A Dzfs_znode.c71 SYSCTL_INT(_debug_sizeof, OID_AUTO, znode, CTLFLAG_RD,