aufs.h 1.51 KB
Newer Older
J. R. Okajima's avatar
J. R. Okajima committed
1
2
/* SPDX-License-Identifier: GPL-2.0 */
/*
3
 * Copyright (C) 2005-2020 Junjiro R. Okajima
4
5
6
7
8
9
10
11
12
13
14
15
16
 *
 * This program, aufs is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
J. R. Okajima's avatar
J. R. Okajima committed
17
18
19
20
21
22
23
24
25
26
27
 */

/*
 * all header files
 */

#ifndef __AUFS_H__
#define __AUFS_H__

#ifdef __KERNEL__

J. R. Okajima's avatar
J. R. Okajima committed
28
29
30
31
32
33
34
35
#define AuStub(type, name, body, ...) \
	static inline type name(__VA_ARGS__) { body; }

#define AuStubVoid(name, ...) \
	AuStub(void, name, , __VA_ARGS__)
#define AuStubInt0(name, ...) \
	AuStub(int, name, return 0, __VA_ARGS__)

J. R. Okajima's avatar
J. R. Okajima committed
36
37
#include "debug.h"

38
#include "branch.h"
J. R. Okajima's avatar
J. R. Okajima committed
39
#include "cpup.h"
J. R. Okajima's avatar
J. R. Okajima committed
40
#include "dcsub.h"
J. R. Okajima's avatar
J. R. Okajima committed
41
#include "dbgaufs.h"
J. R. Okajima's avatar
J. R. Okajima committed
42
#include "dentry.h"
J. R. Okajima's avatar
J. R. Okajima committed
43
#include "dir.h"
44
#include "dirren.h"
45
#include "dynop.h"
46
#include "file.h"
J. R. Okajima's avatar
J. R. Okajima committed
47
#include "fstype.h"
J. R. Okajima's avatar
J. R. Okajima committed
48
#include "hbl.h"
J. R. Okajima's avatar
J. R. Okajima committed
49
#include "inode.h"
50
#include "lcnt.h"
J. R. Okajima's avatar
J. R. Okajima committed
51
#include "loop.h"
J. R. Okajima's avatar
J. R. Okajima committed
52
#include "module.h"
53
#include "opts.h"
J. R. Okajima's avatar
J. R. Okajima committed
54
#include "rwsem.h"
J. R. Okajima's avatar
J. R. Okajima committed
55
#include "super.h"
J. R. Okajima's avatar
J. R. Okajima committed
56
#include "sysaufs.h"
57
#include "vfsub.h"
J. R. Okajima's avatar
J. R. Okajima committed
58
#include "whout.h"
J. R. Okajima's avatar
J. R. Okajima committed
59
#include "wkq.h"
J. R. Okajima's avatar
J. R. Okajima committed
60
61
62

#endif /* __KERNEL__ */
#endif /* __AUFS_H__ */