xref: /netbsd-src/external/cddl/osnet/sys/kern/misc.c (revision 946379e7b37692fc43f68eb0d1c10daa0a7f3b6c)
1 /*	$NetBSD: misc.c,v 1.4 2012/06/05 22:51:47 jym Exp $	*/
2 
3 /*-
4  * Copyright (c) 2009 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by Andrew Doran.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGE.
30  */
31 
32 /*-
33  * Copyright (c) 2007 Pawel Jakub Dawidek <pjd@FreeBSD.org>
34  * All rights reserved.
35  *
36  * Redistribution and use in source and binary forms, with or without
37  * modification, are permitted provided that the following conditions
38  * are met:
39  * 1. Redistributions of source code must retain the above copyright
40  *    notice, this list of conditions and the following disclaimer.
41  * 2. Redistributions in binary form must reproduce the above copyright
42  *    notice, this list of conditions and the following disclaimer in the
43  *    documentation and/or other materials provided with the distribution.
44  *
45  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
46  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
48  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
49  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
50  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
51  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
52  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
53  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
54  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
55  * SUCH DAMAGE.
56  */
57 
58 #include <sys/cdefs.h>
59 /* __FBSDID("$FreeBSD: src/sys/compat/opensolaris/kern/opensolaris_misc.c,v 1.2 2007/04/23 00:52:06 pjd Exp $"); */
60 
61 #include <sys/mount.h>
62 #include <sys/param.h>
63 #include <sys/kernel.h>
64 #include <sys/systm.h>
65 #include <sys/misc.h>
66 #include <sys/sunddi.h>
67 #include <sys/utsname.h>
68 #include <sys/vnode.h>
69 #include <sys/mount.h>
70 #include <sys/pool.h>
71 #include <sys/buf.h>
72 
73 char hw_serial[11] = "0";
74 
75 struct utsname utsname = {
76 	.nodename = "XXXNETBSD"
77 };
78 
79 int
80 vn_is_readonly(vnode_t *vp)
81 {
82 
83 	return (vp->v_mount->mnt_flag & MNT_RDONLY);
84 }
85 
86 kthread_t *
87 thread_create(void * stk, size_t stksize, void (*proc)(), void *arg,
88 	      size_t len, proc_t *pp, int state, pri_t pri)
89 {
90 	int error;
91 	lwp_t *thr;
92 
93 	//ASSERT(stk == NULL && stksize == 0 && len == 0);
94 	ASSERT(stk == NULL && len == 0);
95 	ASSERT(state == TS_RUN);
96 
97 	error = kthread_create(pri, KTHREAD_MPSAFE, NULL,
98 	    proc, arg, &thr, "zfs");
99 	KASSERT(error == 0);
100 	return thr;
101 }
102 
103 void
104 thread_exit(void)
105 {
106 
107 	kthread_exit(0);
108 }
109 
110 void
111 thread_join(uint64_t kid)
112 {
113 
114 	return;
115 }
116 
117 int
118 newproc(void (*pc)(), caddr_t arg, id_t cid, int pri, struct contract **ct,
119     pid_t pid)
120 {
121 	int error;
122 
123 	ASSERT(cid == PRI_NONE);
124 
125 	error = kthread_create(pri, KTHREAD_MPSAFE, NULL,
126 	    pc, arg, NULL, "zfs_proc");
127 	KASSERT(error == 0);
128 
129 	return 0;
130 }
131 
132 void
133 kmem_reap(void)
134 {
135 	int bufcnt;
136 	struct pool *pp;
137 
138 	bufcnt = uvmexp.freetarg - uvmexp.free;
139 	if (bufcnt < 0)
140 		bufcnt = 0;
141 	/*
142 	 * kill unused metadata buffers.
143 	 */
144 	mutex_enter(&bufcache_lock);
145 	buf_drain(bufcnt << PAGE_SHIFT);
146 	mutex_exit(&bufcache_lock);
147 
148 	/*
149 	 * drain the pools.
150 	 */
151 	pool_drain(&pp);
152 //	printf("XXXNETBSD kmem_reap called, write me\n");
153 }
154 
155 /*
156  * Zero out the structure, set the size of the requested/returned bitmaps,
157  * set AT_XVATTR in the embedded vattr_t's va_mask, and set up the pointer
158  * to the returned attributes array.
159  */
160 void
161 xva_init(xvattr_t *xvap)
162 {
163 	bzero(xvap, sizeof (xvattr_t));
164 	xvap->xva_mapsize = XVA_MAPSIZE;
165 	xvap->xva_magic = XVA_MAGIC;
166 	xvap->xva_vattr.va_mask = AT_XVATTR;
167 	xvap->xva_rtnattrmapp = &(xvap->xva_rtnattrmap)[0];
168 }
169 
170 
171 /*
172  * If AT_XVATTR is set, returns a pointer to the embedded xoptattr_t
173  * structure.  Otherwise, returns NULL.
174  */
175 xoptattr_t *
176 xva_getxoptattr(xvattr_t *xvap)
177 {
178 	xoptattr_t *xoap = NULL;
179 	if (xvap->xva_vattr.va_mask & AT_XVATTR)
180 		xoap = &xvap->xva_xoptattrs;
181 	return (xoap);
182 }
183