Lines Matching refs:nests
90 * When EPOLL_CTL_ADD nests one eventpoll inside another we acquire
359 /* tracks wakeup nests for lockdep validation */
360 u8 nests;
832 u8 nests = 0;
845 * wakeup chain then we use its nests value and record ours as
846 * nests + 1. The previous epoll file nests value is stable since its
852 nests = ep_src->nests;
854 nests = 1;
857 spin_lock_irqsave_nested(&ep->poll_wait.lock, flags, nests);
858 ep->nests = nests + 1;
860 ep->nests = 0;
1656 static int path_count_inc(struct ep_ctl_ctx *ctx, int nests)
1659 if (nests == 0)
1662 if (++ctx->path_count[nests] > path_limits[nests])