Searched defs:ipg (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/cmd/mdb/common/modules/libtopo/
H A Dlibtopo.c417 topo_ipgroup_info_t ipg; local
420 if (mdb_vread(&ipg, sizeof (ipg), (uintptr_t)pgp->tpg_info)
421 != sizeof (ipg)) {
427 if (mdb_readstr(buf, sizeof (buf), (uintptr_t)ipg.tpi_name) < 0) {
428 mdb_warn("failed to read string at %p", ipg.tpi_name);
439 buf, ipg.tpi_version, stab_lvls[ipg.tpi_namestab],
440 stab_lvls[ipg.tpi_datastab]);
/illumos-gate/usr/src/cmd/svc/svccfg/
H A Dsvccfg_internal.c980 pgroup_t *ipg; local
982 ipg = internal_pgroup_new();
984 if (scf_pg_get_flags(pg, &ipg->sc_pgroup_flags) != 0) {
987 internal_pgroup_free(ipg);
991 internal_pgroup_free(ipg);
1004 internal_pgroup_free(ipg);
1008 internal_pgroup_free(ipg);
1018 ipg->sc_pgroup_name = strdup(loadbuf);
1019 if (ipg->sc_pgroup_name == NULL) {
1020 internal_pgroup_free(ipg);
1067 pgroup_t *ipg; local
1183 pgroup_t *ipg; local
[all...]
/illumos-gate/usr/src/uts/common/sys/nxge/
H A Dnxge_mac.h240 uint8_t ipg[3]; member in struct:_nxge_mac
/illumos-gate/usr/src/uts/common/io/axf/
H A Daxf_usbgem.c258 uint8_t ipg[3]; member in struct:axf_dev
448 OUT(dp, VCMD_WRITE_IPG, lp->ipg[0], 0, 0, NULL, &err, usberr);
449 OUT(dp, VCMD_WRITE_IPG1, lp->ipg[1], 0, 0, NULL, &err, usberr);
450 OUT(dp, VCMD_WRITE_IPG2, lp->ipg[2], 0, 0, NULL, &err, usberr);
1016 lp->ipg[0] = 0x15;
1017 lp->ipg[1] = 0x0c;
1018 lp->ipg[2] = 0x12;
1074 "!%s: %s: ipg 0x%02x 0x%02x 0x%02x, gpio 0x%b",
1075 dp->name, __func__, lp->ipg[0], lp->ipg[
[all...]
/illumos-gate/usr/src/uts/common/io/scsi/adapters/iscsi/
H A Discsi.c138 iscsi_param_get_t *ipg);
5291 iscsi_override_target_default(iscsi_hba_t *ihp, iscsi_param_get_t *ipg) argument
5298 if (pp->p_bitmap & (1 << ipg->g_param)) {
5300 switch (ipg->g_param) {
5302 ipg->g_value.v_bool.b_default =
5306 ipg->g_value.v_bool.b_default =
5310 ipg->g_value.v_bool.b_default =
5314 ipg->g_value.v_bool.b_default =
5318 ipg->g_value.v_integer.i_default =
5322 ipg
[all...]
/illumos-gate/usr/src/uts/common/io/cxgbe/common/
H A Dt4_hw.c3160 * @ipg: the interpacket delay in tenths of nanoseconds
3165 t4_set_sched_ipg(struct adapter *adap, int sched, unsigned int ipg) argument
3169 /* convert ipg to nearest number of core clocks */
3170 ipg *= core_ticks_per_usec(adap);
3171 ipg = (ipg + 5000) / 10000;
3172 if (ipg > M_TXTIMERSEPQ0)
3178 v = (v & V_TXTIMERSEPQ0(M_TXTIMERSEPQ0)) | V_TXTIMERSEPQ1(ipg);
3180 v = (v & V_TXTIMERSEPQ1(M_TXTIMERSEPQ1)) | V_TXTIMERSEPQ0(ipg);
3191 * @ipg
3196 t4_get_tx_sched(struct adapter *adap, unsigned int sched, unsigned int *kbps, unsigned int *ipg) argument
[all...]

Completed in 67 milliseconds