mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 18:25:14 +00:00
This option allows users to specify their own irmap paths to scan in the event that they don't have a path in one of the hard coded hints. Signed-off-by: Tycho Andersen <tycho.andersen@canonical.com> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
13 lines
433 B
C
13 lines
433 B
C
#ifndef __CR_IRMAP__H__
|
|
#define __CR_IRMAP__H__
|
|
char *irmap_lookup(unsigned int s_dev, unsigned long i_ino);
|
|
struct _FhEntry;
|
|
int irmap_queue_cache(unsigned int dev, unsigned long ino,
|
|
struct _FhEntry *fh);
|
|
int irmap_predump_prep(void);
|
|
int irmap_predump_run(void);
|
|
int check_open_handle(unsigned int s_dev, unsigned long i_ino,
|
|
struct _FhEntry *f_handle);
|
|
int irmap_load_cache(void);
|
|
int irmap_scan_path_add(char *path);
|
|
#endif
|