Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Reber <areber@redhat.com>2021-07-19 10:28:38 +0300
committerAndrei Vagin <avagin@gmail.com>2021-09-03 20:31:00 +0300
commit93dd984ca0ee0e31a5650f64328222e748152bcb (patch)
tree024483c121704ec8d106c9bf596441b51e51a67c /criu/files-ext.c
parent1e26f170caa8b2c26f5d09a78ffe9fdea70d38d0 (diff)
Run 'make indent' on all C files
Acked-by: Mike Rapoport <rppt@linux.ibm.com> Signed-off-by: Adrian Reber <areber@redhat.com>
Diffstat (limited to 'criu/files-ext.c')
-rw-r--r--criu/files-ext.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/criu/files-ext.c b/criu/files-ext.c
index a6247d673..95ec8e37c 100644
--- a/criu/files-ext.c
+++ b/criu/files-ext.c
@@ -20,8 +20,8 @@ static int dump_one_ext_file(int lfd, u32 id, const struct fd_parms *p)
if (ret < 0)
return ret;
- xfe.id = id;
- xfe.fown = (FownEntry *)&p->fown;
+ xfe.id = id;
+ xfe.fown = (FownEntry *)&p->fown;
fe.type = FD_TYPES__EXT;
fe.id = xfe.id;
@@ -32,13 +32,13 @@ static int dump_one_ext_file(int lfd, u32 id, const struct fd_parms *p)
}
const struct fdtype_ops ext_dump_ops = {
- .type = FD_TYPES__EXT,
- .dump = dump_one_ext_file,
+ .type = FD_TYPES__EXT,
+ .dump = dump_one_ext_file,
};
struct ext_file_info {
- struct file_desc d;
- ExtFileEntry *xfe;
+ struct file_desc d;
+ ExtFileEntry *xfe;
};
static int open_fd(struct file_desc *d, int *new_fd)
@@ -83,8 +83,7 @@ struct collect_image_info ext_file_cinfo = {
.collect = collect_one_ext,
};
-int dump_unsupp_fd(struct fd_parms *p, int lfd,
- char *more, char *info, FdinfoEntry *e)
+int dump_unsupp_fd(struct fd_parms *p, int lfd, char *more, char *info, FdinfoEntry *e)
{
int ret;
@@ -92,7 +91,6 @@ int dump_unsupp_fd(struct fd_parms *p, int lfd,
if (ret == 0)
return 0;
if (ret == -ENOTSUP)
- pr_err("Can't dump file %d of that type [%o] (%s %s)\n",
- p->fd, p->stat.st_mode, more, info);
+ pr_err("Can't dump file %d of that type [%o] (%s %s)\n", p->fd, p->stat.st_mode, more, info);
return -1;
}