aufs.h 615 Bytes
Newer Older
J. R. Okajima's avatar
J. R. Okajima committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Copyright (C) 2005-2019 Junjiro R. Okajima
 */

/*
 * all header files
 */

#ifndef __AUFS_H__
#define __AUFS_H__

#ifdef __KERNEL__

J. R. Okajima's avatar
J. R. Okajima committed
15
16
17
18
19
20
21
22
#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
23
24
#include "debug.h"

J. R. Okajima's avatar
J. R. Okajima committed
25
26
#include "dcsub.h"
#include "dentry.h"
J. R. Okajima's avatar
J. R. Okajima committed
27
#include "fstype.h"
J. R. Okajima's avatar
J. R. Okajima committed
28
#include "inode.h"
J. R. Okajima's avatar
J. R. Okajima committed
29
#include "module.h"
J. R. Okajima's avatar
J. R. Okajima committed
30
#include "rwsem.h"
J. R. Okajima's avatar
J. R. Okajima committed
31
#include "super.h"
J. R. Okajima's avatar
J. R. Okajima committed
32
33
34

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