diff options
| author | Manuel Bentele | 2020-09-11 11:48:48 +0200 |
|---|---|---|
| committer | Manuel Bentele | 2020-09-16 07:37:56 +0200 |
| commit | a4215c3632c13218bb389d1f066549ab783028e3 (patch) | |
| tree | 0468836ef5303f6eb94b876189ccaa60a7a2b453 /kernel/tests/include/lapi/mount.h | |
| parent | Updated README with documentation of general information and build options (diff) | |
| download | xloop-a4215c3632c13218bb389d1f066549ab783028e3.tar.gz xloop-a4215c3632c13218bb389d1f066549ab783028e3.tar.xz xloop-a4215c3632c13218bb389d1f066549ab783028e3.zip | |
Added testcases from the Linux testing project (LTP)
Diffstat (limited to 'kernel/tests/include/lapi/mount.h')
| -rw-r--r-- | kernel/tests/include/lapi/mount.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/kernel/tests/include/lapi/mount.h b/kernel/tests/include/lapi/mount.h new file mode 100644 index 0000000..b8ae1f5 --- /dev/null +++ b/kernel/tests/include/lapi/mount.h @@ -0,0 +1,33 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/* + * Copyright (c) 2015 Cui Bixuan <cuibixuan@huawei.com> + */ + +#ifndef __MOUNT_H__ +#define __MOUNT_H__ + +#ifndef MS_REC +#define MS_REC 16384 +#endif + +#ifndef MS_PRIVATE +#define MS_PRIVATE (1<<18) +#endif + +#ifndef MS_STRICTATIME +#define MS_STRICTATIME (1 << 24) +#endif + +#ifndef MNT_DETACH +#define MNT_DETACH 2 +#endif + +#ifndef MNT_EXPIRE +#define MNT_EXPIRE 4 +#endif + +#ifndef UMOUNT_NOFOLLOW +#define UMOUNT_NOFOLLOW 8 +#endif + +#endif /* __MOUNT_H__ */ |
