Home
last modified time | relevance | path

Searched refs:lru_next (Results 1 – 4 of 4) sorted by relevance

/titanic_44/usr/src/uts/common/rpc/sec/
H A Dsvcauthdes.c98 struct authdes_cache_entry *lru_prev, *lru_next; /* LRU linked list */ member
539 if ((new->lru_next = lru_first) != NULL) { in authdes_cache_new()
565 cur->lru_prev->lru_next = cur->lru_next; in authdes_cache_get()
566 if (cur->lru_next != NULL) { in authdes_cache_get()
567 cur->lru_next->lru_prev = cur->lru_prev; in authdes_cache_get()
572 cur->lru_next = lru_first; in authdes_cache_get()
619 p->lru_prev->lru_next = NULL; in authdes_cache_reclaim()
668 p->lru_prev->lru_next = NULL; in sweep_cache()
/titanic_44/usr/src/lib/rpcsec_gss/
H A Dsvc_rpcsec_gss.c78 struct _svc_rpc_gss_data *lru_next, *lru_prev; member
1257 if ((client_data->lru_next = lru_first) != NULL)
1288 cl->lru_prev->lru_next = cl->lru_next;
1289 if (cl->lru_next != NULL)
1290 cl->lru_next->lru_prev = cl->lru_prev;
1294 cl->lru_next = lru_first;
1345 lru_first = client_data->lru_next;
1347 client_data->lru_prev->lru_next = client_data->lru_next;
1348 if (client_data->lru_next != NULL)
1349 client_data->lru_next->lru_prev = client_data->lru_prev;
/titanic_44/usr/src/uts/common/rpc/sec_gss/
H A Dsvc_rpcsec_gss.c83 struct _svc_rpc_gss_data *lru_next, *lru_prev; member
1524 client_data->lru_next = NULL; in create_client()
1584 if ((client_data->lru_next = lru_first) != NULL)
1621 cl->lru_prev->lru_next = cl->lru_next;
1622 if (cl->lru_next != NULL)
1623 cl->lru_next->lru_prev = cl->lru_prev;
1627 cl->lru_next = lru_first;
1682 lru_first = client_data->lru_next;
1684 client_data->lru_prev->lru_next = client_data->lru_next;
1685 if (client_data->lru_next != NULL)
[all …]
/titanic_44/usr/src/cmd/gss/gssd/
H A Dgssd_proc.c57 struct gssd_ctx_slot *lru_next; member
173 gssd_ctx_slot_tbl[i-1].lru_next = &gssd_ctx_slot_tbl[i]; in gssd_setup()
181 gssd_ctx_slot_tbl[max_contexts - 1].lru_next = &gssd_ctx_slot_tbl[0]; in gssd_setup()
204 gssd_lru_head = lru->lru_next; in gssd_alloc_slot()
283 next = lru->lru_next; in gssd_rel_slot()
284 prev->lru_next = next; in gssd_rel_slot()
294 prev->lru_next = lru; in gssd_rel_slot()
298 lru->lru_next = next; in gssd_rel_slot()