]> git.proxmox.com Git - mirror_zfs.git/blobdiff - lib/libspl/include/sys/mount.h
cstyle: Resolve C style issues
[mirror_zfs.git] / lib / libspl / include / sys / mount.h
index 0fa4f255445622f2416287b45bfb6bda045ff1da..41cd839b7f1c8fab8778225337113086f21da43f 100644 (file)
@@ -27,7 +27,7 @@
 #include_next <sys/mount.h>
 
 #ifndef _LIBSPL_SYS_MOUNT_H
-#define _LIBSPL_SYS_MOUNT_H
+#define        _LIBSPL_SYS_MOUNT_H
 
 #include <sys/mntent.h>
 #include <assert.h>
@@ -39,7 +39,7 @@
  * and we don't want to require the kernel headers
  */
 #if !defined(BLKGETSIZE64)
-#define BLKGETSIZE64           _IOR(0x12, 114, size_t)
+#define        BLKGETSIZE64            _IOR(0x12, 114, size_t)
 #endif
 
 /*
@@ -48,7 +48,7 @@
  * headers define MS_DIRSYNC to be S_WRITE.
  */
 #if !defined(MS_DIRSYNC)
-#define MS_DIRSYNC             S_WRITE
+#define        MS_DIRSYNC              S_WRITE
 #endif
 
 /*
  * kernel back to 2.4.11 so we define them correctly if they are missing.
  */
 #ifdef MNT_FORCE
-# define MS_FORCE      MNT_FORCE
+#define        MS_FORCE        MNT_FORCE
 #else
-# define MS_FORCE      0x00000001
+#define        MS_FORCE        0x00000001
 #endif /* MNT_FORCE */
 
 #ifdef MNT_DETACH
-# define MS_DETACH     MNT_DETACH
+#define        MS_DETACH       MNT_DETACH
 #else
-# define MS_DETACH     0x00000002
+#define        MS_DETACH       0x00000002
 #endif /* MNT_DETACH */
 
 /*
@@ -87,6 +87,6 @@
  * compatibility, MS_OVERLAY is defined to explicitly have the user
  * provide a flag (-O) to mount over a non empty directory.
  */
-#define MS_OVERLAY      0x00000004
+#define        MS_OVERLAY      0x00000004
 
 #endif /* _LIBSPL_SYS_MOUNT_H */