Print this page
8115 parallel zfs mount

@@ -9,10 +9,11 @@
  * http://www.illumos.org/license/CDDL.
  */
 
 /*
  * Copyright 2013 Nexenta Systems, Inc.  All rights reserved.
+ * Copyright 2017 RackTop Systems.
  */
 
 
 #include <sys/types.h>
 #include <sys/time.h>

@@ -50,10 +51,38 @@
 crgetuid(const cred_t *cr)
 {
         return (0);
 }
 
+/*ARGSUSED*/
+uid_t
+crgetruid(const cred_t *cr)
+{
+        return (0);
+}
+
+/*ARGSUSED*/
+uid_t
+crgetgid(const cred_t *cr)
+{
+        return (0);
+}
+
+/*ARGSUSED*/
+int
+crgetngroups(const cred_t *cr)
+{
+        return (0);
+}
+
+/*ARGSUSED*/
+const gid_t *
+crgetgroups(const cred_t *cr)
+{
+        return (NULL);
+}
+
 cred_t *
 zone_kcred(void)
 {
         return (kcred);
 }