Searched refs:doi (Results 1 - 24 of 24) sorted by relevance

/freebsd-10.1-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dbpobj.c97 dmu_object_info_t doi; local
109 VERIFY3U(0, ==, dmu_object_info(os, bpo.bpo_phys->bpo_subobjs, &doi));
110 epb = doi.doi_data_block_size / sizeof (uint64_t);
148 dmu_object_info_t doi; local
151 err = dmu_object_info(os, object, &doi);
161 ASSERT3U(doi.doi_type, ==, DMU_OT_BPOBJ);
162 ASSERT3U(doi.doi_bonus_type, ==, DMU_OT_BPOBJ_HDR);
170 bpo->bpo_epb = doi.doi_data_block_size >> SPA_BLKPTRSHIFT;
171 bpo->bpo_havecomp = (doi.doi_bonus_size > BPOBJ_SIZE_V0);
172 bpo->bpo_havesubobj = (doi
206 dmu_object_info_t doi; local
402 dmu_object_info_t doi; local
419 dmu_object_info_t doi; local
[all...]
H A Ddsl_deadlist.c96 dmu_object_info_t doi; local
102 dmu_object_info_from_db(dl->dl_dbuf, &doi);
103 if (doi.doi_type == DMU_OT_BPOBJ) {
154 dmu_object_info_t doi; local
158 VERIFY3U(0, ==, dmu_object_info(os, dlobj, &doi));
159 if (doi.doi_type == DMU_OT_BPOBJ) {
461 dmu_object_info_t doi; local
463 VERIFY3U(0, ==, dmu_object_info(dl->dl_os, obj, &doi));
464 if (doi.doi_type == DMU_OT_BPOBJ) {
H A Dspace_map.c477 dmu_object_info_t doi; local
484 dmu_object_info_from_db(sm->sm_dbuf, &doi);
493 if (bonuslen != doi.doi_bonus_size ||
494 doi.doi_data_block_size != SPACE_MAP_INITIAL_BLOCKSIZE) {
497 spa_name(spa), doi.doi_bonus_size, doi.doi_data_block_size);
554 dmu_object_info_t doi; local
556 dmu_object_info_from_db(sm->sm_dbuf, &doi);
557 if (doi.doi_bonus_size != SPACE_MAP_SIZE_V0) {
H A Dspa_history.c229 dmu_object_info_t doi; local
230 dmu_object_info_from_db(dbp, &doi);
231 ASSERT3U(doi.doi_bonus_type, ==, DMU_OT_SPA_HISTORY_OFFSETS);
369 dmu_object_info_t doi; local
370 dmu_object_info_from_db(dbp, &doi);
371 ASSERT3U(doi.doi_bonus_type, ==, DMU_OT_SPA_HISTORY_OFFSETS);
H A Dzfs_sa.c136 dmu_object_info_t doi; local
143 sa_object_info(zp->z_sa_hdl, &doi);
147 if (len <= doi.doi_bonus_size) {
169 dmu_object_info_t doi; local
173 sa_object_info(zp->z_sa_hdl, &doi);
176 if (len > doi.doi_bonus_size)
H A Ddmu.c1832 dmu_object_info_from_dnode(dnode_t *dn, dmu_object_info_t *doi) argument
1841 doi->doi_data_block_size = dn->dn_datablksz;
1842 doi->doi_metadata_block_size = dn->dn_indblkshift ?
1844 doi->doi_type = dn->dn_type;
1845 doi->doi_bonus_type = dn->dn_bonustype;
1846 doi->doi_bonus_size = dn->dn_bonuslen;
1847 doi->doi_indirection = dn->dn_nlevels;
1848 doi->doi_checksum = dn->dn_checksum;
1849 doi->doi_compress = dn->dn_compress;
1850 doi
1865 dmu_object_info(objset_t *os, uint64_t object, dmu_object_info_t *doi) argument
1884 dmu_object_info_from_db(dmu_buf_t *db_fake, dmu_object_info_t *doi) argument
1889 dmu_object_info_from_dnode(DB_DNODE(db), doi); local
[all...]
H A Dddt.c112 dmu_object_info_t doi; local
132 VERIFY(ddt_object_info(ddt, type, class, &doi) == 0);
139 ddo->ddo_dspace = doi.doi_physical_blocks_512 << 9;
140 ddo->ddo_mspace = doi.doi_fill_count * doi.doi_data_block_size;
150 dmu_object_info_t doi; local
163 VERIFY(ddt_object_info(ddt, type, class, &doi) == 0);
167 ddo->ddo_dspace = doi.doi_physical_blocks_512 << 9;
168 ddo->ddo_mspace = doi.doi_fill_count * doi
233 ddt_object_info(ddt_t *ddt, enum ddt_type type, enum ddt_class class, dmu_object_info_t *doi) argument
[all...]
H A Dzfs_znode.c1120 dmu_object_info_t doi; local
1142 dmu_object_info_from_db(db, &doi);
1143 if (doi.doi_bonus_type != DMU_OT_SA &&
1144 (doi.doi_bonus_type != DMU_OT_ZNODE ||
1145 (doi.doi_bonus_type == DMU_OT_ZNODE &&
1146 doi.doi_bonus_size < sizeof (znode_phys_t)))) {
1220 zp = zfs_znode_alloc(zfsvfs, db, doi.doi_data_block_size,
1221 doi.doi_bonus_type, NULL);
1250 dmu_object_info_t doi; local
1276 dmu_object_info_from_db(db, &doi);
1947 dmu_object_info_t doi; local
[all...]
H A Ddmu_traverse.c613 dmu_object_info_t doi; local
615 err = dmu_object_info(mos, obj, &doi);
622 if (doi.doi_bonus_type == DMU_OT_DSL_DATASET) {
H A Dzfs_dir.c476 dmu_object_info_t doi; local
492 zap.za_first_integer, &doi);
496 ASSERT((doi.doi_type == DMU_OT_PLAIN_FILE_CONTENTS) ||
497 (doi.doi_type == DMU_OT_DIRECTORY_CONTENTS));
H A Ddsl_dir.c175 dmu_object_info_t doi; local
176 dmu_object_info_from_db(dbuf, &doi);
177 ASSERT3U(doi.doi_bonus_type, ==, DMU_OT_DSL_DIR);
178 ASSERT3U(doi.doi_bonus_size, >=, sizeof (dsl_dir_phys_t));
1967 dmu_object_info_t doi; local
1969 dmu_object_info_from_db(dd->dd_dbuf, &doi);
1970 return (doi.doi_type == DMU_OTN_ZAP_METADATA);
H A Dzvol.c265 dmu_object_info_t doi; local
274 error = dmu_object_info(os, ZVOL_OBJ, &doi);
278 doi.doi_data_block_size);
539 dmu_object_info_t doi; local
659 error = dmu_object_info(os, ZVOL_OBJ, &doi);
661 zv->zv_volblocksize = doi.doi_data_block_size;
902 dmu_object_info_t doi; local
913 if ((error = dmu_object_info(os, ZVOL_OBJ, &doi)) != 0 ||
915 doi.doi_data_block_size)) != 0)
H A Dsa.c1376 dmu_object_info_t doi; local
1380 dmu_object_info_from_db(db, &doi);
1381 ASSERT(doi.doi_bonus_type == DMU_OT_SA ||
1382 doi.doi_bonus_type == DMU_OT_ZNODE);
1908 sa_object_info(sa_handle_t *hdl, dmu_object_info_t *doi) argument
1910 dmu_object_info_from_db((dmu_buf_t *)hdl->sa_bonus, doi);
H A Dzap_micro.c473 dmu_object_info_t doi; local
474 dmu_object_info_from_db(db, &doi);
475 ASSERT3U(DMU_OT_BYTESWAP(doi.doi_type), ==, DMU_BSWAP_ZAP);
597 dmu_object_info_t doi; local
598 dmu_object_info_from_db(db, &doi);
599 ASSERT3U(DMU_OT_BYTESWAP(doi.doi_type), ==, DMU_BSWAP_ZAP);
H A Dmetaslab.c1751 dmu_object_info_t doi; local
1780 dmu_object_info_from_db(sm->sm_dbuf, &doi);
1781 record_size = MAX(doi.doi_data_block_size, vdev_blocksize);
H A Ddsl_dataset.c359 dmu_object_info_t doi; local
368 dmu_object_info_from_db(dbuf, &doi);
369 if (doi.doi_bonus_type != DMU_OT_DSL_DATASET) {
418 if (doi.doi_type == DMU_OTN_ZAP_METADATA) {
/freebsd-10.1-release/contrib/tcpdump/
H A Dprint-isakmp.c120 u_int32_t doi, u_int32_t proto,
549 u_int32_t doi, sit, ident; local
558 doi = ntohl(sa.doi);
560 if (doi != 1) {
561 ND_PRINT((ndo," doi=%d", doi));
566 ND_PRINT((ndo," doi=ipsec"));
592 cp = ikev1_sub_print(ndo, ISAKMP_NPTYPE_P, ext, ep, phase, doi, proto0,
767 const u_char *ep, u_int32_t phase _U_, u_int32_t doi _U
1188 u_int32_t doi; local
1329 u_int32_t doi; local
2026 ikev2_e_print(netdissect_options *ndo, _U_ struct isakmp *base, u_char tpay, const struct isakmp_gen *ext, u_int item_len _U_, const u_char *ep _U_, _U_ u_int32_t phase, _U_ u_int32_t doi, _U_ u_int32_t proto, _U_ int depth) argument
2117 ike_sub0_print(netdissect_options *ndo, u_char np, const struct isakmp_gen *ext, const u_char *ep, u_int32_t phase, u_int32_t doi, u_int32_t proto, int depth) argument
2158 ikev1_sub_print(netdissect_options *ndo, u_char np, const struct isakmp_gen *ext, const u_char *ep, u_int32_t phase, u_int32_t doi, u_int32_t proto, int depth) argument
2294 ikev2_sub0_print(netdissect_options *ndo, struct isakmp *base, u_char np, int pcount, const struct isakmp_gen *ext, const u_char *ep, u_int32_t phase, u_int32_t doi, u_int32_t proto, int depth) argument
2345 ikev2_sub_print(netdissect_options *ndo, struct isakmp *base, u_char np, const struct isakmp_gen *ext, const u_char *ep, u_int32_t phase, u_int32_t doi, u_int32_t proto, int depth) argument
[all...]
H A Dipsec_doi.h115 u_int32_t doi; /* Domain of Interpretation */ member in struct:ipsecdoi_sa
H A Disakmp.h191 /* MAY NOT be used, because of being defined in ipsec-doi. */
204 u_int32_t doi; /* Domain of Interpretation */ member in struct:ikev1_pl_sa
247 /* MUST NOT to be used, because of being defined in ipsec-doi. */
319 u_int32_t doi; /* Domain of Interpretation */ member in struct:ikev1_pl_n
363 u_int32_t doi; /* Domain of Interpretation */ member in struct:ikev1_pl_d
/freebsd-10.1-release/cddl/contrib/opensolaris/cmd/zdb/
H A Dzdb.c848 dmu_object_info_t doi; local
852 error = ddt_object_info(ddt, type, class, &doi);
863 dspace = doi.doi_physical_blocks_512 << 9;
864 mspace = doi.doi_fill_count * doi.doi_data_block_size;
1734 dmu_object_info_t doi; local
1761 dmu_object_info_from_dnode(dn, &doi);
1763 zdb_nicenum(doi.doi_metadata_block_size, iblk);
1764 zdb_nicenum(doi.doi_data_block_size, dblk);
1765 zdb_nicenum(doi
[all...]
/freebsd-10.1-release/cddl/contrib/opensolaris/cmd/ztest/
H A Dztest.c1300 dmu_object_info_t doi; local
1303 dmu_object_info_from_db(db, &doi);
1304 ASSERT3U(doi.doi_bonus_size, <=, db->db_size);
1305 ASSERT3U(doi.doi_bonus_size, >=, sizeof (*bt));
1306 bt = (void *)((char *)db->db_data + doi.doi_bonus_size - sizeof (*bt));
1513 dmu_object_info_t doi; local
1529 VERIFY3U(0, ==, dmu_object_info(os, object, &doi));
1542 if (doi.doi_type == DMU_OT_ZAP_OTHER) {
1568 dmu_object_info_t doi; local
1600 dmu_object_info_from_db(db, &doi);
1850 dmu_object_info_t doi; local
1970 dmu_object_info_t doi; local
2172 dmu_object_info_t doi; local
3208 dmu_object_info_t doi; local
3827 dmu_object_info_t doi; local
[all...]
/freebsd-10.1-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Ddmu.h691 * If doi is NULL, just indicates whether the object exists.
693 int dmu_object_info(objset_t *os, uint64_t object, dmu_object_info_t *doi);
695 void dmu_object_info_from_dnode(struct dnode *dn, dmu_object_info_t *doi);
697 void dmu_object_info_from_db(dmu_buf_t *db, dmu_object_info_t *doi);
/freebsd-10.1-release/sys/contrib/ipfilter/netinet/
H A Dfil.c1836 u_32_t doi; local
1844 doi = ipf_checkripso(s);
1845 secmsk = doi >> 16;
1846 auth = doi & 0xffff;
1855 doi = ipf_checkcipso(fin,
1857 secmsk = doi >> 16;
1858 auth = doi & 0xffff;
1924 /* Returns: u_32_t - 0 = failure, else the doi from the header */
1945 u_32_t doi; local
1960 bcopy(s + 2, &doi, sizeo
[all...]
/freebsd-10.1-release/contrib/ipfilter/tools/
H A Dipf_y.y1571 | IPFY_IPOPT_CIPSO doi { $$ = getoptbyvalue(IPOPT_CIPSO); }
1604 doi: IPFY_DOI YY_NUMBER { DOALL(fr->fr_doimask = 0xffffffff; \ label
1757 { "doi", IPFY_DOI },

Completed in 253 milliseconds