Lines Matching refs:list
11 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
67 * @hash: position in hashed lookup list
68 * @list: position in linked list, in circular ascending order by 'addr'
69 * @applied: number of reported domain members applied on this monitor list
79 struct list_head list;
168 return list_last_entry(&peer->list, struct tipc_peer, list);
173 return list_first_entry(&peer->list, struct tipc_peer, list);
243 /* mon_apply_domain() : match a peer's domain record against monitor list
256 /* Scan across domain members and match against monitor list */
321 * The monitor list is consistent at this stage; i.e., each peer is monitoring
322 * a set of domain members as matched between domain record and the monitor list
367 list_del(&peer->list);
379 list_for_each_entry(peer, &self->list, list) {
402 /* Add new peer to lookup list */
403 INIT_LIST_HEAD(&p->list);
406 /* Sort new peer into iterator list, in ascending circular order */
408 list_for_each_entry(cur, &self->list, list) {
416 list_add_tail(&p->list, &cur->list);
675 INIT_LIST_HEAD(&self->list);
695 list_for_each_entry_safe(peer, tmp, &self->list, list) {
696 list_del(&peer->list);