This file is indexed.

/usr/include/repair/alloc.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
/* Copyright 2001-2005 by Hans Reiser, licensing governed by
   reiser4progs/COPYING.
   
   alloc.h -- repair block allocator functions. */

#ifndef REPAIR_ALLOC_H
#define REPAIR_ALLOC_H

extern errno_t repair_alloc_check_struct(reiser4_alloc_t *alloc, 
					 uint8_t mode);

extern errno_t repair_alloc_layout_bad(reiser4_alloc_t *alloc, 
				       region_func_t func, void *data);

extern errno_t repair_alloc_pack(reiser4_alloc_t *alloc,
				 aal_stream_t *stream);

extern reiser4_alloc_t *repair_alloc_unpack(reiser4_fs_t *fs,
					    aal_stream_t *stream);

extern void repair_alloc_print(reiser4_alloc_t *alloc, aal_stream_t *stream);

extern errno_t repair_alloc_open(reiser4_fs_t *fs, uint8_t mode);

#endif