From 5e97706a5c5490a763538a2b2ba465b7e61fa8ba Mon Sep 17 00:00:00 2001 From: Pavel Emelyanov Date: Fri, 26 May 2017 18:39:40 +0300 Subject: [PATCH] pipe: Fix comment about list head entry The list in question is not used for fles nowadays. Signed-off-by: Pavel Emelyanov Signed-off-by: Andrei Vagin --- criu/include/pipes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/criu/include/pipes.h b/criu/include/pipes.h index 47d98aee7..83fb71cfc 100644 --- a/criu/include/pipes.h +++ b/criu/include/pipes.h @@ -50,7 +50,7 @@ struct pipe_info { PipeEntry *pe; struct list_head pipe_list; /* All pipe_info with the same pipe_id * This is pure circular list without head */ - struct list_head list; /* list head for fdinfo_list_entry-s */ + struct list_head list; /* global list of pipes */ struct file_desc d; unsigned int create : 1, reopen : 1;