Home
last modified time | relevance | path

Searched refs:geomp (Results 1 – 12 of 12) sorted by relevance

/titanic_41/usr/src/lib/lvm/libmeta/common/
H A Dmeta_init.c145 mdgeom_t *geomp, in meta_setup_geom() argument
152 diskaddr_t cylsize = geomp->nhead * geomp->nsect; in meta_setup_geom()
162 md->c.un_nhead = geomp->nhead; in meta_setup_geom()
163 md->c.un_nsect = geomp->nsect; in meta_setup_geom()
164 md->c.un_rpm = geomp->rpm; in meta_setup_geom()
H A Dmeta_stripe.c1401 mdgeom_t *geomp; in meta_stripe_attach() local
1425 if ((geomp = metagetgeom(np, ep)) == NULL) in meta_stripe_attach()
1427 if (geomp->write_reinstruct > write_reinstruct) in meta_stripe_attach()
1428 write_reinstruct = geomp->write_reinstruct; in meta_stripe_attach()
1429 if (geomp->read_reinstruct > read_reinstruct) in meta_stripe_attach()
1430 read_reinstruct = geomp->read_reinstruct; in meta_stripe_attach()
1796 mdgeom_t *geomp; in stripe_geom() local
1811 if ((geomp = metagetgeom(compnp, ep)) == NULL) in stripe_geom()
1813 if (geomp->write_reinstruct > write_reinstruct) in stripe_geom()
1814 write_reinstruct = geomp->write_reinstruct; in stripe_geom()
[all …]
H A Dmeta_raid.c1170 mdgeom_t *geomp; in adjust_geom() local
1173 if ((geomp = metagetgeom(colnp, ep)) == NULL) in adjust_geom()
1177 if (meta_adjust_geom((md_unit_t *)mr, raidnp, geomp->write_reinstruct, in adjust_geom()
1178 geomp->read_reinstruct, round_cyl, ep) != 0) in adjust_geom()
2018 mdgeom_t *geomp; in raid_geom() local
2025 if ((geomp = metagetgeom(colnp, ep)) == NULL) in raid_geom()
2027 if (geomp->write_reinstruct > write_reinstruct) in raid_geom()
2028 write_reinstruct = geomp->write_reinstruct; in raid_geom()
2029 if (geomp->read_reinstruct > read_reinstruct) in raid_geom()
2030 read_reinstruct = geomp->read_reinstruct; in raid_geom()
[all …]
H A Dmeta_mirror.c2325 mdgeom_t *geomp; in mirror_geom() local
2335 if ((geomp = metagetgeom(submirnp, ep)) == NULL) in mirror_geom()
2337 if (geomp->write_reinstruct > write_reinstruct) in mirror_geom()
2338 write_reinstruct = geomp->write_reinstruct; in mirror_geom()
2339 if (geomp->read_reinstruct > read_reinstruct) in mirror_geom()
2340 read_reinstruct = geomp->read_reinstruct; in mirror_geom()
2348 if ((geomp = metagetgeom(smnp, ep)) == NULL) in mirror_geom()
2350 if (meta_setup_geom((md_unit_t *)mm, mirrorp->common.namep, geomp, in mirror_geom()
H A Dmeta_nameinfo.c1007 mdgeom_t *geomp; in metagetstart() local
1009 if ((geomp = metagetgeom(np, ep)) == NULL) in metagetstart()
1011 start_blk = roundup(start_blk, (geomp->nhead * geomp->nsect)); in metagetstart()
H A Dmeta_sp.c428 mdgeom_t *geomp; in meta_sp_setgeom() local
431 if ((geomp = metagetgeom(compnp, ep)) == NULL) in meta_sp_setgeom()
433 if (meta_setup_geom((md_unit_t *)mp, np, geomp, geomp->write_reinstruct, in meta_sp_setgeom()
434 geomp->read_reinstruct, round_cyl, ep) != 0) in meta_sp_setgeom()
/titanic_41/usr/src/uts/common/xen/io/
H A Dxdf.c1736 xdf_synthetic_pgeom(dev_info_t *dip, cmlb_geom_t *geomp) in xdf_synthetic_pgeom() argument
1745 bzero(geomp, sizeof (*geomp)); in xdf_synthetic_pgeom()
1746 geomp->g_ncyl = ncyl == 0 ? 1 : ncyl; in xdf_synthetic_pgeom()
1747 geomp->g_acyl = 0; in xdf_synthetic_pgeom()
1748 geomp->g_nhead = XDF_NHEADS; in xdf_synthetic_pgeom()
1749 geomp->g_nsect = XDF_NSECTS; in xdf_synthetic_pgeom()
1750 geomp->g_secsize = vdp->xdf_xdev_secsize; in xdf_synthetic_pgeom()
1751 geomp->g_capacity = vdp->xdf_xdev_nblocks; in xdf_synthetic_pgeom()
1752 geomp->g_intrlv = 0; in xdf_synthetic_pgeom()
1753 geomp->g_rpm = 7200; in xdf_synthetic_pgeom()
[all …]
/titanic_41/usr/src/uts/common/io/lvm/stripe/
H A Dstripe_ioctl.c683 struct dk_geom *geomp in stripe_get_geom() argument
686 md_get_geom((md_unit_t *)un, geomp); in stripe_get_geom()
/titanic_41/usr/src/uts/common/io/lvm/trans/
H A Dtrans_ioctl.c1449 trans_get_geom(mt_unit_t *un, struct dk_geom *geomp) in trans_get_geom() argument
1451 md_get_geom((md_unit_t *)un, geomp); in trans_get_geom()
/titanic_41/usr/src/uts/common/io/lvm/raid/
H A Draid_ioctl.c2056 struct dk_geom *geomp in raid_get_geom() argument
2059 md_get_geom((md_unit_t *)un, geomp); in raid_get_geom()
/titanic_41/usr/src/uts/common/io/lvm/mirror/
H A Dmirror_ioctl.c429 struct dk_geom *geomp in mirror_get_geom() argument
432 md_get_geom((md_unit_t *)un, geomp); in mirror_get_geom()
/titanic_41/usr/src/head/
H A Dmeta.h845 mdgeom_t *geomp, uint_t write_reinstruct,