[CRIU] [PATCH v2 02/10] kcmp: Beautify kcmp-ids.h

Cyrill Gorcunov gorcunov at gmail.com
Wed Jun 27 12:11:57 MSK 2018


From: Cyrill Gorcunov <gorcunov at openvz.org>

 - aling memebers
 - use pid_t type for PIDs

Signed-off-by: Cyrill Gorcunov <gorcunov at openvz.org>
---
 criu/include/kcmp-ids.h | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/criu/include/kcmp-ids.h b/criu/include/kcmp-ids.h
index ac6d84a2bb6a..37e2398db206 100644
--- a/criu/include/kcmp-ids.h
+++ b/criu/include/kcmp-ids.h
@@ -2,27 +2,28 @@
 #define __CR_KCMP_IDS_H__
 
 #include <stdint.h>
+#include <sys/types.h>
 
 #include "kcmp.h"
 
 struct kid_tree {
-	struct rb_root root;
-	unsigned kcmp_type;
-	unsigned long subid;
+	struct rb_root		root;
+	unsigned int		kcmp_type;
+	unsigned long		subid;
 
 };
 
-#define DECLARE_KCMP_TREE(name, type)	\
-	struct kid_tree name = {	\
-		.root = RB_ROOT,	\
-		.kcmp_type = type,	\
-		.subid = 1,		\
+#define DECLARE_KCMP_TREE(name, type)		\
+	struct kid_tree name = {		\
+		.root		= RB_ROOT,	\
+		.kcmp_type	= type,		\
+		.subid		= 1,		\
 	}
 
 struct kid_elem {
-	int pid;
-	unsigned genid;
-	unsigned idx;
+	pid_t		pid;
+	unsigned int	genid;
+	unsigned int	idx;
 };
 
 extern uint32_t kid_generate_gen(struct kid_tree *tree,
-- 
2.14.4



More information about the CRIU mailing list