Home
last modified time | relevance | path

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

/illumos-gate/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()
/illumos-gate/usr/src/lib/rpcsec_gss/
H A Dsvc_rpcsec_gss.c76 struct _svc_rpc_gss_data *lru_next, *lru_prev; member
1229 if ((client_data->lru_next = lru_first) != NULL) in insert_client()
1259 cl->lru_prev->lru_next = cl->lru_next; in get_client()
1260 if (cl->lru_next != NULL) in get_client()
1261 cl->lru_next->lru_prev = cl->lru_prev; in get_client()
1265 cl->lru_next = lru_first; in get_client()
1314 lru_first = client_data->lru_next; in destroy_client()
1316 client_data->lru_prev->lru_next = client_data->lru_next; in destroy_client()
1317 if (client_data->lru_next != NULL) in destroy_client()
1318 client_data->lru_next->lru_prev = client_data->lru_prev; in destroy_client()
/illumos-gate/usr/src/uts/common/rpc/sec_gss/
H A Dsvc_rpcsec_gss.c88 struct _svc_rpc_gss_data *lru_next, *lru_prev; member
1638 client_data->lru_next = NULL; in create_client()
1697 if ((client_data->lru_next = lru_first) != NULL) in insert_client()
1733 cl->lru_prev->lru_next = cl->lru_next; in get_client()
1734 if (cl->lru_next != NULL) in get_client()
1735 cl->lru_next->lru_prev = cl->lru_prev; in get_client()
1739 cl->lru_next = lru_first; in get_client()
1792 lru_first = client_data->lru_next; in destroy_client()
1794 client_data->lru_prev->lru_next = client_data->lru_next; in destroy_client()
1795 if (client_data->lru_next != NULL) in destroy_client()
[all …]
/illumos-gate/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()