Searched defs:tcl_slots (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/mdb/common/modules/sppp/
H A Dsppp.c322 tuncl_t *tcl_slots[1]; member in struct:tcl_walk_data
333 sizeof (twd->tcl_slots[0])));
342 tuncl_t **tcl_slots; local
359 if (mdb_readvar(&tcl_slots, "tcl_slots") == -1) {
360 mdb_warn("failed to read tcl_slots");
365 (tcl_nslots - 1) * sizeof (*tcl_slots), UM_NOSLEEP);
372 if (mdb_vread(twd->tcl_slots, tcl_nslots * sizeof (twd->tcl_slots[0]),
373 (uintptr_t)tcl_slots)
[all...]
/illumos-gate/usr/src/uts/common/io/ppp/sppptun/
H A Dsppptun.c129 * The tcl_slots array entries are modified only when exclusive on
132 * need to lock around accesses. (Specifically, the tcl_slots array
135 static tuncl_t **tcl_slots = NULL; /* Slots for tuncl_t */ variable
228 * the tcl_slots array.
235 tuncl_t **tcl_old = tcl_slots;
258 tcl_slots = tcl_new;
269 * thus there are no other users of the tcl_slots array.
279 ASSERT(tcl_slots != NULL);
343 ASSERT(tcl_slots[dminor - 1] == NULL);
344 tcl_slots[dmino
[all...]

Completed in 120 milliseconds