From patchwork Wed Jul 4 15:51:30 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [v5,02/19] kcmp: Beautify kcmp-ids.h From: Cyrill Gorcunov X-Patchwork-Id: 8808 Message-Id: <20180704155147.29114-3-gorcunov@gmail.com> To: crml Cc: Cyrill Gorcunov , Andrey Vagin Date: Wed, 4 Jul 2018 18:51:30 +0300 From: Cyrill Gorcunov - aling memebers - use pid_t type for PIDs Signed-off-by: Cyrill Gorcunov --- 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 +#include #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,