From 7748b3fe7326f6f987fc9fd0d3fa267800420264 Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Mon, 10 Mar 2025 14:43:24 +0100 Subject: [PATCH] pstree: print clone flags in error message Signed-off-by: Han-Wen Nienhuys --- criu/pstree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/criu/pstree.c b/criu/pstree.c index 41df846ed..660f1b9d9 100644 --- a/criu/pstree.c +++ b/criu/pstree.c @@ -962,7 +962,7 @@ static int prepare_pstree_kobj_ids(void) * this namespace is either inherited from the * criu or is created for the init task (only) */ - pr_err("Can't restore sub-task in NS\n"); + pr_err("Can't restore sub-task in NS (cflags %lx)\n", cflags); return -1; } }