This file is indexed.

/usr/include/repair/cleanup.h is in libreiser4-dev 1.0.7-6.3fakesync2.

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
29
30
31
/* Copyright 2001-2005 by Hans Reiser, licensing governed by
   reiser4progs/COPYING.
   
   repair/cleanup.h -- the structures and methods needed for
   cleaning up the storage trees at the end of filsystem recovery. */

#ifndef REPAIR_CLEANUP_H
#define REPAIR_CLEANUP_H

#include <time.h>
#include <repair/librepair.h>

/* Statistics gathered during the pass. */
typedef struct repair_cleanup_stat {
	uint64_t removed, linked;
	time_t time;
} repair_cleanup_stat_t;

/* Data filter works on. */
typedef struct repair_cleanup {
	repair_data_t *repair;
	reiser4_place_t neigh;
	repair_cleanup_stat_t stat;
	
	aal_gauge_t *gauge;
	reiser4_place_t *cur_place;
} repair_cleanup_t;

extern errno_t repair_cleanup(repair_cleanup_t *cleanup);

#endif