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;
138 return list_last_entry(&peer->list, struct tipc_peer, list);
143 return list_first_entry(&peer->list, struct tipc_peer, list);
213 /* mon_apply_domain() : match a peer's domain record against monitor list
226 /* Scan across domain members and match against monitor list */
291 * The monitor list is consistent at this stage; i.e., each peer is monitoring
292 * a set of domain members as matched between domain record and the monitor list
337 list_del(&peer->list);
349 list_for_each_entry(peer, &self->list, list) {
372 /* Add new peer to lookup list */
373 INIT_LIST_HEAD(&p->list);
376 /* Sort new peer into iterator list, in ascending circular order */
378 list_for_each_entry(cur, &self->list, list) {
386 list_add_tail(&p->list, &cur->list);
644 INIT_LIST_HEAD(&self->list);
664 list_for_each_entry_safe(peer, tmp, &self->list, list) {
665 list_del(&peer->list);