[CRIU] [PATCH v5 04/21] unix: Use uint32_t instead of u32
Cyrill Gorcunov
gorcunov at gmail.com
Thu May 10 17:57:44 MSK 2018
So the rest of code will match.
Signed-off-by: Cyrill Gorcunov <gorcunov at gmail.com>
---
criu/sk-unix.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/criu/sk-unix.c b/criu/sk-unix.c
index 68b0c5573ea5..d611e8ef15bc 100644
--- a/criu/sk-unix.c
+++ b/criu/sk-unix.c
@@ -244,7 +244,7 @@ static int get_mnt_id(int lfd, int *mnt_id)
return 0;
}
-static int resolve_rel_name(u32 id, struct unix_sk_desc *sk, const struct fd_parms *p, char **pdir)
+static int resolve_rel_name(uint32_t id, struct unix_sk_desc *sk, const struct fd_parms *p, char **pdir)
{
const char *dirs[] = { "cwd", "root" };
struct pstree_item *task;
@@ -314,9 +314,9 @@ static int resolve_rel_name(u32 id, struct unix_sk_desc *sk, const struct fd_par
return -ENOENT;
}
-static int unix_resolve_name(int lfd, u32 id, struct unix_sk_desc *d,
+static int unix_resolve_name(int lfd, uint32_t id, struct unix_sk_desc *d,
UnixSkEntry *ue, const struct fd_parms *p);
-static int dump_one_unix_fd(int lfd, u32 id, const struct fd_parms *p)
+static int dump_one_unix_fd(int lfd, uint32_t id, const struct fd_parms *p)
{
struct unix_sk_desc *sk, *peer;
UnixSkEntry *ue;
@@ -544,7 +544,7 @@ const struct fdtype_ops unix_dump_ops = {
.dump = dump_one_unix_fd,
};
-static int unix_resolve_name(int lfd, u32 id, struct unix_sk_desc *d,
+static int unix_resolve_name(int lfd, uint32_t id, struct unix_sk_desc *d,
UnixSkEntry *ue, const struct fd_parms *p)
{
char *name = d->name;
@@ -710,7 +710,7 @@ static int unix_collect_one(const struct unix_diag_msg *m,
goto err;
memcpy(d->icons, nla_data(tb[UNIX_DIAG_ICONS]), len);
- d->nr_icons = len / sizeof(u32);
+ d->nr_icons = len / sizeof(uint32_t);
/*
* Remember these sockets, we will need them
--
2.14.3
More information about the CRIU
mailing list