Lines Matching refs:cache_tail
88 static struct cache_entry *cache_tail; /* cache (in LRU order) */
500 cache_tail = &_rpc_authdes_cache[authdes_cachesz - 1];
506 cache_tail->index = authdes_cachesz - 1;
508 cache_head->prev = cache_tail;
509 cache_tail->next = cache_head;
510 cache_tail->prev = &_rpc_authdes_cache[authdes_cachesz - 2];
545 if (cache_tail == curr) { /* no work to do */
549 cache_tail = curr;
554 curr->prev = cache_tail;
556 cache_tail->next = curr; /* fix the tail */
557 cache_tail = curr; /* move the tail */