Home
last modified time | relevance | path

Searched refs:z_size (Results 1 – 15 of 15) sorted by relevance

/titanic_41/usr/src/cmd/prstat/
H A Dprtable.c193 if (tbl->z_size == tbl->z_nent) { /* reallocation */ in add_zone()
194 if ((tbl->z_size *= 2) == 0) in add_zone()
195 tbl->z_size = 4; /* first time */ in add_zone()
197 Realloc(tbl->z_list, tbl->z_size * sizeof (zonename_t)); in add_zone()
H A Dprtable.h62 size_t z_size; member
/titanic_41/usr/src/uts/common/fs/zfs/
H A Dzfs_znode.c208 nzp->z_size = ozp->z_size; in zfs_znode_move_impl()
664 &zp->z_size, 8); in zfs_znode_alloc()
1230 &zp->z_size, sizeof (zp->z_size)); in zfs_rezget()
1418 if (zp->z_blksz && zp->z_size > zp->z_blksz) in zfs_grow_blocksize()
1467 if (end <= zp->z_size) in zfs_extend()
1503 zp->z_size = end; in zfs_extend()
1506 &zp->z_size, sizeof (zp->z_size), tx)); in zfs_extend()
1533 if (off >= zp->z_size) in zfs_free_range()
1536 if (off + len > zp->z_size) in zfs_free_range()
1537 len = zp->z_size - off; in zfs_free_range()
[all …]
H A Dzfs_acl.c478 aclnode->z_size = bytes; in zfs_acl_node_alloc()
617 ((caddr_t)aclnode->z_acldata + aclnode->z_size)) { in zfs_acl_next_ace()
839 &newaclnode->z_size, NULL, cr) == 0); in zfs_acl_xform()
852 aclp->z_acl_bytes = newaclnode->z_size; in zfs_acl_xform()
1108 aclnode->z_size = aclsize; in zfs_acl_node_read()
1113 znode_acl.z_acl_extern_obj, 0, aclnode->z_size, in zfs_acl_node_read()
1117 aclnode->z_size); in zfs_acl_node_read()
1121 aclnode->z_acldata, aclnode->z_size); in zfs_acl_node_read()
1158 *length = cb->cb_acl_node->z_size; in zfs_acl_data_locator()
1279 aclnode->z_size, aclnode->z_acldata, tx); in zfs_aclset_common()
[all …]
H A Dzfs_vnops.c206 !(zp->z_pflags & ZFS_AV_QUARANTINED) && zp->z_size > 0) { in zfs_open()
244 !(zp->z_pflags & ZFS_AV_QUARANTINED) && zp->z_size > 0) in zfs_close()
273 file_sz = zp->z_size; in zfs_holey()
576 if (uio->uio_loffset >= zp->z_size) { in zfs_read()
581 ASSERT(uio->uio_loffset < zp->z_size); in zfs_read()
582 n = MIN(uio->uio_resid, zp->z_size - uio->uio_loffset); in zfs_read()
704 &zp->z_size, 8); in zfs_write()
723 (uio->uio_loffset < zp->z_size))) { in zfs_write()
733 woff = ioflag & FAPPEND ? zp->z_size : uio->uio_loffset; in zfs_write()
776 woff = zp->z_size; in zfs_write()
[all …]
H A Dzfs_dir.c744 dzp->z_size++; in zfs_link_create()
748 &dzp->z_size, sizeof (dzp->z_size)); in zfs_link_create()
882 dzp->z_size--; /* one dirent removed */ in zfs_link_destroy()
887 NULL, &dzp->z_size, sizeof (dzp->z_size)); in zfs_link_destroy()
915 return (dzp->z_size == 2 && dzp->z_dirlocks == 0); in zfs_dirempty()
H A Dzfs_sa.c77 bufsz = zp->z_size; in zfs_sa_readlink()
259 &zp->z_size, 8); in zfs_sa_upgrade()
H A Dzfs_replay.c672 if (zp->z_size < eod) in zfs_replay_write()
706 if (end > zp->z_size) { in zfs_replay_write2()
709 zp->z_size = end; in zfs_replay_write2()
723 (void *)&zp->z_size, sizeof (uint64_t), tx); in zfs_replay_write2()
H A Dzfs_rlock.c131 new->r_off = zp->z_size; in zfs_range_lock_writer()
138 end_size = MAX(zp->z_size, new->r_off + len); in zfs_range_lock_writer()
/titanic_41/usr/src/uts/common/fs/zev/
H A Dzev_checksums.c268 if (cs->offset_l1 < zp->z_size) in zev_chksum_cache_invalidate()
397 if (uio.uio_loffset >= zp->z_size) in zev_safe_read()
401 n = MIN(uio.uio_resid, zp->z_size - uio.uio_loffset); in zev_safe_read()
627 if (pos_l1 > zp->z_size) { in zev_get_checksums()
656 if (pos_l0 >= zp->z_size) in zev_get_checksums()
697 if (non_empty_l0_blocks && (zp->z_size > ZEV_L0_SIZE)) in zev_get_checksums()
754 if (gs.zev_offset >= zp->z_size) { in zev_ioc_get_signatures()
H A Dzev_callbacks.c34 rec->name.size = znode->z_size; \
/titanic_41/usr/src/uts/common/fs/zfs/sys/
H A Dzfs_acl.h155 size_t z_size; /* length of ACL data */ member
H A Dzfs_znode.h187 uint64_t z_size; /* file size (cached) */ member
/titanic_41/usr/src/cmd/mdb/common/mdb/
H A Dmdb_gcore.h128 uint64_t z_size; member
/titanic_41/usr/src/cmd/mdb/common/modules/genunix/
H A Dgcore.c523 return (znode.z_size); in gcore_vnode_size()