Merge branch 'stable-3.2' into pandora-3.2
[pandora-kernel.git] / fs / aufs / aufs.h
1 /*
2  * Copyright (C) 2005-2013 Junjiro R. Okajima
3  *
4  * This program, aufs is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18
19 /*
20  * all header files
21  */
22
23 #ifndef __AUFS_H__
24 #define __AUFS_H__
25
26 #ifdef __KERNEL__
27
28 #define AuStub(type, name, body, ...) \
29         static inline type name(__VA_ARGS__) { body; }
30
31 #define AuStubVoid(name, ...) \
32         AuStub(void, name, , __VA_ARGS__)
33 #define AuStubInt0(name, ...) \
34         AuStub(int, name, return 0, __VA_ARGS__)
35
36 #include "debug.h"
37
38 #include "branch.h"
39 #include "cpup.h"
40 #include "dcsub.h"
41 #include "dbgaufs.h"
42 #include "dentry.h"
43 #include "dir.h"
44 #include "dynop.h"
45 #include "file.h"
46 #include "fstype.h"
47 #include "inode.h"
48 #include "loop.h"
49 #include "module.h"
50 #include "opts.h"
51 #include "rwsem.h"
52 #include "spl.h"
53 #include "super.h"
54 #include "sysaufs.h"
55 #include "vfsub.h"
56 #include "whout.h"
57 #include "wkq.h"
58
59 #endif /* __KERNEL__ */
60 #endif /* __AUFS_H__ */