/usr/include/repair/master.h is in libreiser4-dev 1.1.0-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | /* Copyright 2001-2005 by Hans Reiser, licensing governed by
reiser4progs/COPYING.
repair/master.h -- reiserfs master superblock recovery structures
and macros. */
#ifndef REPAIR_MASTER_H
#define REPAIR_MASTER_H
#include <repair/repair.h>
extern errno_t repair_master_check_struct(reiser4_fs_t *fs,
uint8_t mode,
uint32_t options);
extern errno_t repair_master_pack(reiser4_master_t *master,
aal_stream_t *stream);
extern reiser4_master_t *repair_master_unpack(aal_device_t *device,
aal_stream_t *stream);
extern void repair_master_print(reiser4_master_t *master,
aal_stream_t *stream,
uuid_unparse_t unparse);
extern errno_t repair_master_check_backup(backup_hint_t *hint);
#endif
|