]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/aufs/aufs.h
UBUNTU: ubuntu: vbox -- update to 5.2.6-dfsg-5
[mirror_ubuntu-bionic-kernel.git] / fs / aufs / aufs.h
CommitLineData
0006ebb4
SF
1/*
2 * Copyright (C) 2005-2017 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, see <http://www.gnu.org/licenses/>.
16 */
17
18/*
19 * all header files
20 */
21
22#ifndef __AUFS_H__
23#define __AUFS_H__
24
25#ifdef __KERNEL__
26
27#define AuStub(type, name, body, ...) \
28 static inline type name(__VA_ARGS__) { body; }
29
30#define AuStubVoid(name, ...) \
31 AuStub(void, name, , __VA_ARGS__)
32#define AuStubInt0(name, ...) \
33 AuStub(int, name, return 0, __VA_ARGS__)
34
35#include "debug.h"
36
37#include "branch.h"
38#include "cpup.h"
39#include "dcsub.h"
40#include "dbgaufs.h"
41#include "dentry.h"
42#include "dir.h"
43#include "dirren.h"
44#include "dynop.h"
45#include "file.h"
46#include "fstype.h"
47#include "hbl.h"
48#include "inode.h"
49#include "loop.h"
50#include "module.h"
51#include "opts.h"
52#include "rwsem.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__ */