search for: dmu_object_typ

Displaying 2 results from an estimated 2 matches for "dmu_object_typ".

Did you mean: dmu_object_type
2005 Dec 14
0
ZFS fixes in build 29
...NULL vdev 6344502 placeholder bug for the remaining Makefile cleanup work for ZFS 6345206 zpool iostat doesn''t always line up 6345547 assertion failed: tempreserve < arc.c/4 from zfs_rename 6348792 incorrect error message when using long name with ''zfs rename'' 6349314 dmu_object_type names incorrect for DSL Directories and DSL Datasets 6350417 long name will cause rename a dataset panic. 6350871 chmod doesn''t work correctly when creating a directory and inheriting file_inherit/no_propagate. 6351333 zfsadmin_1016.pdf page 37 section 4.5.1 -- typo 6351672 internal error...
2013 Oct 26
2
[PATCH] 1. changes for vdiskadm on illumos based platform
...tadata) + +typedef enum dmu_object_byteswap { + DMU_BSWAP_UINT8, + DMU_BSWAP_UINT16, + DMU_BSWAP_UINT32, + DMU_BSWAP_UINT64, + DMU_BSWAP_ZAP, + DMU_BSWAP_DNODE, + DMU_BSWAP_OBJSET, + DMU_BSWAP_ZNODE, + DMU_BSWAP_OLDACL, + DMU_BSWAP_ACL, + DMU_BSWAP_NUMFUNCS +} dmu_object_byteswap_t; + typedef enum dmu_object_type { DMU_OT_NONE, /* general: */ @@ -38,8 +78,8 @@ typedef enum dmu_object_type { DMU_OT_OBJECT_ARRAY, /* UINT64 */ DMU_OT_PACKED_NVLIST, /* UINT8 (XDR by nvlist_pack/unpack) */ DMU_OT_PACKED_NVLIST_SIZE, /* UINT64 */ - DMU_OT_BPLIST, /* UINT64 */ - DMU_OT_BPLIST_HDR, /* UINT64 */ + DM...