Lines Matching defs:unmap_ctx
780 struct userfaultfd_unmap_ctx *unmap_ctx;
782 list_for_each_entry(unmap_ctx, unmaps, list)
783 if (unmap_ctx->ctx == ctx && unmap_ctx->start == start &&
784 unmap_ctx->end == end)
795 struct userfaultfd_unmap_ctx *unmap_ctx;
802 unmap_ctx = kzalloc(sizeof(*unmap_ctx), GFP_KERNEL);
803 if (!unmap_ctx)
808 unmap_ctx->ctx = ctx;
809 unmap_ctx->start = start;
810 unmap_ctx->end = end;
811 list_add_tail(&unmap_ctx->list, unmaps);