4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or https://opensource.org/licenses/CDDL-1.0.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #include_next <sys/mount.h>
29 #ifndef _LIBSPL_SYS_MOUNT_H
30 #define _LIBSPL_SYS_MOUNT_H
37 * Some old glibc headers don't define BLKGETSIZE64
38 * and we don't want to require the kernel headers
40 #if !defined(BLKGETSIZE64)
41 #define BLKGETSIZE64 _IOR(0x12, 114, size_t)
45 * Some old glibc headers don't correctly define MS_DIRSYNC and
46 * instead use the enum name S_WRITE. When using these older
47 * headers define MS_DIRSYNC to be S_WRITE.
49 #if !defined(MS_DIRSYNC)
50 #define MS_DIRSYNC S_WRITE
54 * Some old glibc headers don't correctly define MS_POSIXACL and
55 * instead leave it undefined. When using these older headers define
56 * MS_POSIXACL to the reserved value of (1<<16).
58 #if !defined(MS_POSIXACL)
59 #define MS_POSIXACL (1<<16)
62 #define MS_USERS (MS_NOEXEC|MS_NOSUID|MS_NODEV)
63 #define MS_OWNER (MS_NOSUID|MS_NODEV)
64 #define MS_GROUP (MS_NOSUID|MS_NODEV)
68 * Older glibc <sys/mount.h> headers did not define all the available
69 * umount2(2) flags. Both MNT_FORCE and MNT_DETACH are supported in the
70 * kernel back to 2.4.11 so we define them correctly if they are missing.
73 #define MS_FORCE MNT_FORCE
75 #define MS_FORCE 0x00000001
76 #endif /* MNT_FORCE */
79 #define MS_DETACH MNT_DETACH
81 #define MS_DETACH 0x00000002
82 #endif /* MNT_DETACH */
85 * Overlay mount is default in Linux, but for solaris/zfs
86 * compatibility, MS_OVERLAY is defined to explicitly have the user
87 * provide a flag (-O) to mount over a non empty directory.
89 #define MS_OVERLAY 0x00000004
92 * MS_CRYPT indicates that encryption keys should be loaded if they are not
93 * already available. This is not defined in glibc, but it is never seen by
94 * the kernel so it will not cause any problems.
96 #define MS_CRYPT 0x00000008
98 #endif /* _LIBSPL_SYS_MOUNT_H */