[CRIU] [PATCH] lazy-pages: treat ENOMEM returned by UFFDIO_UNREGISTER as task exit

Andrei Vagin avagin at virtuozzo.com
Wed Oct 4 01:25:34 MSK 2017


On Thu, Sep 28, 2017 at 08:58:52PM +0300, Mike Rapoport wrote:
> The UFFDIO_UNREGISTER returns ENOMEM only when it is unable to get
> mm_struct. We can assume in such case that the task is exited.
> 
> Signed-off-by: Mike Rapoport <rppt at linux.vnet.ibm.com>
> ---
>  criu/uffd.c | 5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/criu/uffd.c b/criu/uffd.c
> index 7e85890..77c02c4 100644
> --- a/criu/uffd.c
> +++ b/criu/uffd.c
> @@ -914,6 +914,11 @@ static int handle_remove(struct lazy_pages_info *lpi, struct uffd_msg *msg)
>  	 */
>  	if (msg->event == UFFD_EVENT_REMOVE &&
>  	    ioctl(lpi->lpfd.fd, UFFDIO_UNREGISTER, &unreg)) {
> +		if (errno == ENOMEM) {
pls, add a comment here
> +			handle_exit(lpi);
> +			return 0;
> +		}
> +
>  		pr_perror("Failed to unregister (%llx - %llx)", unreg.start,
>  			  unreg.start + unreg.len);
>  		return -1;
> -- 
> 2.7.4
> 


More information about the CRIU mailing list