Lines Matching refs:next
16 /* return the next shared peer mount of @p */
19 return list_entry(p->mnt_share.next, struct mount, mnt_share);
24 return list_entry(p->mnt_slave_list.next, struct mount, mnt_slave);
34 return list_entry(p->mnt_slave.next, struct mount, mnt_slave);
140 * get the next mount in the propagation tree.
160 struct mount *next = next_peer(m);
161 return (next == origin) ? NULL : next;
162 } else if (m->mnt_slave.next != &master->mnt_slave_list)
187 struct mount *next;
190 next = next_peer(m);
192 if (next == origin)
194 } else if (m->mnt_slave.next != &next->mnt_slave)
196 m = next;
201 if (m->mnt_slave.next != &master->mnt_slave_list)
206 if (master->mnt_slave.next == &m->mnt_slave)