uts: make emu10k non-verbose
[unleashed.git] / kernel / syscall / mount.c
blobd38fb22ff350ced193d21bfd1b447af3676ed3c1
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
20 * CDDL HEADER END
23 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 /* Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T */
28 /* All Rights Reserved */
31 * Portions of this source code were derived from Berkeley 4.3 BSD
32 * under license from the Regents of the University of California.
35 #pragma ident "%Z%%M% %I% %E% SMI"
37 #include <sys/types.h>
38 #include <sys/t_lock.h>
39 #include <sys/param.h>
40 #include <sys/errno.h>
41 #include <sys/user.h>
42 #include <sys/fstyp.h>
43 #include <sys/kmem.h>
44 #include <sys/systm.h>
45 #include <sys/mount.h>
46 #include <sys/vfs.h>
47 #include <sys/cred.h>
48 #include <sys/vnode.h>
49 #include <sys/dnlc.h>
50 #include <sys/file.h>
51 #include <sys/time.h>
52 #include <sys/cmn_err.h>
53 #include <sys/swap.h>
54 #include <sys/debug.h>
55 #include <sys/pathname.h>
58 * System calls.
62 * "struct mounta" defined in sys/vfs.h.
65 /* ARGSUSED */
66 int
67 mount(long *lp, rval_t *rp)
69 vnode_t *vp = NULL;
70 struct vfs *vfsp; /* dummy argument */
71 int error;
72 struct mounta *uap;
73 #if defined(_LP64)
74 struct mounta native;
77 * Make a struct mounta if we are DATAMODEL_LP64
79 uap = &native;
80 uap->spec = (char *)*lp++;
81 uap->dir = (char *)*lp++;
82 uap->flags = (int)*lp++;
83 uap->fstype = (char *)*lp++;
84 uap->dataptr = (char *)*lp++;
85 uap->datalen = (int)*lp++;
86 uap->optptr = (char *)*lp++;
87 uap->optlen = (int)*lp++;
88 #else /* !defined(_LP64) */
90 * 32 bit kernels can take a shortcut and just cast
91 * the args array to the structure.
93 uap = (struct mounta *)lp;
94 #endif /* _LP64 */
96 * Resolve second path name (mount point).
98 if (error = lookupname(uap->dir, UIO_USERSPACE, FOLLOW, NULLVPP, &vp))
99 return (set_errno(error));
102 * Some mount flags are disallowed through the system call interface.
104 uap->flags &= MS_MASK;
106 error = domount(NULL, uap, vp, CRED(), &vfsp);
107 if (!error)
108 VFS_RELE(vfsp);
110 VN_RELE(vp);
111 rp->r_val2 = error;
112 return (error ? set_errno(error) : 0);