Lines Matching refs:error
39 int error = 0;
45 error = EINVAL;
57 error = EFAULT;
70 /* return error if not configured as a cluster */
72 error = ENOSYS;
77 error = copyout(&nid, arg, sizeof (nid));
85 error = EINVAL;
88 error = cladmin(fac, cmd, arg);
90 * error will be -1 if the cladm module cannot be loaded;
94 if (error < 0)
95 error = ENOSYS;
99 return (error ? set_errno(error) : 0);