[CRIU] [PATCH] parasite-syscall: print syscall number as %lu
Andrew Vagin
avagin at virtuozzo.com
Mon Apr 4 10:45:15 PDT 2016
On Mon, Apr 04, 2016 at 04:41:39PM +0300, Dmitry Safonov wrote:
> We will still able to distinguish if it's garbage in ax register, but
> this is definitely prettier:
> (00.036900) 687 was trapped
> (00.036903) 687 is going to execute the syscall 158
> (00.036928) 687 was trapped
> (00.036931) 687 is going to execute the syscall 173
>
> Than that:
> (00.024403) 687 was trapped
> (00.024407) 687 is going to execute the syscall 9e
> (00.024419) 687 was trapped
> (00.024421) 687 is going to execute the syscall ad
>
Acked-by: Andrew Vagin <avagin at virtuozzo.com>
> Signed-off-by: Dmitry Safonov <dsafonov at virtuozzo.com>
> ---
> criu/parasite-syscall.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/criu/parasite-syscall.c b/criu/parasite-syscall.c
> index 89770d68423b..355955e0668b 100644
> --- a/criu/parasite-syscall.c
> +++ b/criu/parasite-syscall.c
> @@ -974,7 +974,7 @@ int parasite_stop_on_syscall(int tasks, const int sys_nr, enum trace_flags trace
> return -1;
> }
>
> - pr_debug("%d is going to execute the syscall %lx\n", pid, REG_SYSCALL_NR(regs));
> + pr_debug("%d is going to execute the syscall %lu\n", pid, REG_SYSCALL_NR(regs));
> if (REG_SYSCALL_NR(regs) == sys_nr) {
> /*
> * The process is going to execute the required syscall,
> --
> 2.7.4
>
> _______________________________________________
> CRIU mailing list
> CRIU at openvz.org
> https://lists.openvz.org/mailman/listinfo/criu
More information about the CRIU
mailing list