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

mount: Rename struct proc_mountinfo into mount_info

This structure will be used on restore and will be created
from the image, thus the name proc_ is not suitable.

Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
Pavel Emelyanov
2012-06-27 20:57:30 +04:00
parent b580345518
commit e0cb53a19f
3 changed files with 11 additions and 11 deletions

View File

@@ -85,7 +85,7 @@ struct proc_status_creds {
unsigned int cap_bnd[PROC_CAP_SIZE];
};
struct proc_mountinfo {
struct mount_info {
int mnt_id;
int parent_mnt_id;
unsigned int s_dev;
@@ -97,10 +97,10 @@ struct proc_mountinfo {
char *fstype;
char *source;
char *options;
struct proc_mountinfo *next;
struct mount_info *next;
};
extern struct proc_mountinfo *parse_mountinfo(pid_t pid);
extern struct mount_info *parse_mountinfo(pid_t pid);
extern int parse_pid_stat(pid_t pid, struct proc_pid_stat *s);
extern int parse_pid_stat_small(pid_t pid, struct proc_pid_stat_small *s);
extern int parse_smaps(pid_t pid, struct list_head *vma_area_list, bool use_map_files);