]> granicus.if.org Git - spl/commitdiff
Add MAXUID define
authorBrian Behlendorf <behlendorf1@llnl.gov>
Wed, 12 Jan 2011 19:29:17 +0000 (11:29 -0800)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Fri, 28 Jan 2011 00:06:09 +0000 (16:06 -0800)
For Linux the maximum uid can vary depending on how your kernel
is built.  The Linux kernel still can be compiled with 16 but uids
and gids, although I'm not aware of a major distribution which does
this (maybe an embedded one?).  Given that caviot it is reasonably
safe to define the MAXUID as 2147483647.

include/sys/param.h

index be3dd4bf3553d4b0163e14be081ac17b37a5d126..60f3ae2a97655154da5d42a8b7e390b057ed05c7 100644 (file)
@@ -31,4 +31,6 @@
 #define ptob(pages)                    (pages << PAGE_SHIFT)
 #define btop(bytes)                    (bytes >> PAGE_SHIFT)
 
+#define MAXUID                         2147483647
+
 #endif /* SPL_PARAM_H */