From f15fe7cfb3ac4913e3329c20e46ee94a9406fa0c Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Wed, 4 Jul 2018 18:51:38 +0300 Subject: [PATCH] epoll: Show tfd in decimal form For easier fd match when reading logs Signed-off-by: Cyrill Gorcunov Signed-off-by: Andrei Vagin --- criu/eventpoll.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/criu/eventpoll.c b/criu/eventpoll.c index 1ac6d5d9a..3779ebeeb 100644 --- a/criu/eventpoll.c +++ b/criu/eventpoll.c @@ -46,8 +46,8 @@ int is_eventpoll_link(char *link) static void pr_info_eventpoll_tfd(char *action, EventpollTfdEntry *e) { - pr_info("%seventpoll-tfd: id %#08x tfd %#08x events %#08x data %#016"PRIx64"\n", - action, e->id, e->tfd, e->events, e->data); + pr_info("%seventpoll-tfd: tfd %8d events %#08x data %#016"PRIx64"\n", + action, e->tfd, e->events, e->data); } static void pr_info_eventpoll(char *action, EventpollFileEntry *e)