]> git.proxmox.com Git - mirror_zfs.git/blobdiff - lib/libspl/include/sys/param.h
cstyle: Resolve C style issues
[mirror_zfs.git] / lib / libspl / include / sys / param.h
index 75cf0b757777c31523a30d10e600fa881d275307..4090cefe87593ea849b546101da8e7b603e91fb1 100644 (file)
@@ -25,7 +25,7 @@
  */
 
 #ifndef _LIBSPL_SYS_PARAM_H
-#define _LIBSPL_SYS_PARAM_H
+#define        _LIBSPL_SYS_PARAM_H
 
 #include_next <sys/param.h>
 #include <unistd.h>
  * Note that the blocked devices are assumed to have DEV_BSIZE
  * "sectors" and that fragments must be some multiple of this size.
  */
-#define MAXBSIZE   8192
-#define DEV_BSIZE  512
-#define DEV_BSHIFT 9     /* log2(DEV_BSIZE) */
+#define        MAXBSIZE        8192
+#define        DEV_BSIZE       512
+#define        DEV_BSHIFT      9               /* log2(DEV_BSIZE) */
 
-#define MAXNAMELEN      256
-#define MAXOFFSET_T     LLONG_MAX
+#define        MAXNAMELEN      256
+#define        MAXOFFSET_T     LLONG_MAX
 
-#define UID_NOBODY      60001   /* user ID no body */
-#define GID_NOBODY      UID_NOBODY
-#define UID_NOACCESS    60002   /* user ID no access */
+#define        UID_NOBODY      60001           /* user ID no body */
+#define        GID_NOBODY      UID_NOBODY
+#define        UID_NOACCESS    60002           /* user ID no access */
 
-#define MAXUID          UINT32_MAX      /* max user id */
-#define MAXPROJID       MAXUID          /* max project id */
+#define        MAXUID          UINT32_MAX      /* max user id */
+#define        MAXPROJID       MAXUID          /* max project id */
 
-#define PAGESIZE (sysconf(_SC_PAGESIZE))
+#define        PAGESIZE        (sysconf(_SC_PAGESIZE))
 
 #endif