Home
last modified time | relevance | path

Searched refs:unmap_ctx (Results 1 – 1 of 1) sorted by relevance

/fs/
Duserfaultfd.c823 struct userfaultfd_unmap_ctx *unmap_ctx; in has_unmap_ctx() local
825 list_for_each_entry(unmap_ctx, unmaps, list) in has_unmap_ctx()
826 if (unmap_ctx->ctx == ctx && unmap_ctx->start == start && in has_unmap_ctx()
827 unmap_ctx->end == end) in has_unmap_ctx()
838 struct userfaultfd_unmap_ctx *unmap_ctx; in userfaultfd_unmap_prep() local
847 unmap_ctx = kzalloc(sizeof(*unmap_ctx), GFP_KERNEL); in userfaultfd_unmap_prep()
848 if (!unmap_ctx) in userfaultfd_unmap_prep()
853 unmap_ctx->ctx = ctx; in userfaultfd_unmap_prep()
854 unmap_ctx->start = start; in userfaultfd_unmap_prep()
855 unmap_ctx->end = end; in userfaultfd_unmap_prep()
[all …]