2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-31 06:15:24 +00:00

stats: Protobuf file introduction introduction

We'll have one more "image" file generated by dump and (surprisingly)
restore commands -- the stats one. It will contain in a single pb
object all the statistics collected by dump/restore.

Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
Pavel Emelyanov
2013-05-08 17:23:56 +04:00
parent e75148dc03
commit d770f4ef23
10 changed files with 33 additions and 0 deletions

View File

@@ -13,6 +13,7 @@
#include "mount.h"
#include "net.h"
#include "pstree.h"
#include "stats.h"
#include "protobuf.h"
#include "protobuf/inventory.pb-c.h"
#include "protobuf/pagemap.pb-c.h"
@@ -167,6 +168,12 @@ struct cr_fd_desc_tmpl fdset_template[CR_FD_MAX] = {
FD_ENTRY(SHM_PAGES_OLD, "pages-shmem-%ld", NULL),
FD_ENTRY(SIGNAL, "signal-s-%d", show_siginfo), /* shared signals */
FD_ENTRY(PSIGNAL, "signal-p-%d", show_siginfo), /* private signals */
[CR_FD_STATS] = {
.fmt = "stats-%s",
.magic = STATS_MAGIC,
.show = show_stats,
},
};
static struct cr_fdset *alloc_cr_fdset(int nr)