ld_ataraid.c revision 1.6 1 1.6 darrenr /* $NetBSD: ld_ataraid.c,v 1.6 2003/06/28 14:21:32 darrenr Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*
4 1.1 thorpej * Copyright (c) 2003 Wasabi Systems, Inc.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * Written by Jason R. Thorpe for Wasabi Systems, Inc.
8 1.1 thorpej *
9 1.1 thorpej * Redistribution and use in source and binary forms, with or without
10 1.1 thorpej * modification, are permitted provided that the following conditions
11 1.1 thorpej * are met:
12 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
13 1.1 thorpej * notice, this list of conditions and the following disclaimer.
14 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
16 1.1 thorpej * documentation and/or other materials provided with the distribution.
17 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
18 1.1 thorpej * must display the following acknowledgement:
19 1.1 thorpej * This product includes software developed for the NetBSD Project by
20 1.1 thorpej * Wasabi Systems, Inc.
21 1.1 thorpej * 4. The name of Wasabi Systems, Inc. may not be used to endorse
22 1.1 thorpej * or promote products derived from this software without specific prior
23 1.1 thorpej * written permission.
24 1.1 thorpej *
25 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
26 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
29 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
36 1.1 thorpej */
37 1.1 thorpej
38 1.1 thorpej /*
39 1.1 thorpej * Support for ATA RAID logical disks.
40 1.1 thorpej *
41 1.1 thorpej * Note that all the RAID happens in software here; the ATA RAID
42 1.1 thorpej * controllers we're dealing with (Promise, etc.) only support
43 1.1 thorpej * configuration data on the component disks, with the BIOS supporting
44 1.1 thorpej * booting from the RAID volumes.
45 1.1 thorpej */
46 1.1 thorpej
47 1.1 thorpej #include "rnd.h"
48 1.1 thorpej
49 1.1 thorpej #include <sys/param.h>
50 1.1 thorpej #include <sys/systm.h>
51 1.1 thorpej #include <sys/conf.h>
52 1.1 thorpej #include <sys/kernel.h>
53 1.1 thorpej #include <sys/device.h>
54 1.1 thorpej #include <sys/buf.h>
55 1.1 thorpej #include <sys/dkio.h>
56 1.1 thorpej #include <sys/disk.h>
57 1.1 thorpej #include <sys/disklabel.h>
58 1.1 thorpej #include <sys/fcntl.h>
59 1.1 thorpej #include <sys/malloc.h>
60 1.1 thorpej #include <sys/vnode.h>
61 1.1 thorpej #if NRND > 0
62 1.1 thorpej #include <sys/rnd.h>
63 1.1 thorpej #endif
64 1.1 thorpej
65 1.1 thorpej #include <miscfs/specfs/specdev.h>
66 1.1 thorpej
67 1.1 thorpej #include <dev/ldvar.h>
68 1.1 thorpej
69 1.1 thorpej #include <dev/ata/ata_raidvar.h>
70 1.1 thorpej
71 1.1 thorpej struct ld_ataraid_softc {
72 1.1 thorpej struct ld_softc sc_ld;
73 1.1 thorpej
74 1.1 thorpej struct ataraid_array_info *sc_aai;
75 1.1 thorpej struct vnode *sc_vnodes[ATA_RAID_MAX_DISKS];
76 1.1 thorpej
77 1.1 thorpej void (*sc_iodone)(struct buf *);
78 1.1 thorpej };
79 1.1 thorpej
80 1.1 thorpej static int ld_ataraid_match(struct device *, struct cfdata *, void *);
81 1.1 thorpej static void ld_ataraid_attach(struct device *, struct device *, void *);
82 1.1 thorpej
83 1.1 thorpej static int ld_ataraid_dump(struct ld_softc *, void *, int, int);
84 1.1 thorpej
85 1.1 thorpej static int ld_ataraid_start_span(struct ld_softc *, struct buf *);
86 1.1 thorpej
87 1.1 thorpej static int ld_ataraid_start_raid0(struct ld_softc *, struct buf *);
88 1.1 thorpej static void ld_ataraid_iodone_raid0(struct buf *);
89 1.1 thorpej
90 1.1 thorpej CFATTACH_DECL(ld_ataraid, sizeof(struct ld_ataraid_softc),
91 1.1 thorpej ld_ataraid_match, ld_ataraid_attach, NULL, NULL);
92 1.1 thorpej
93 1.1 thorpej static int ld_ataraid_initialized;
94 1.1 thorpej static struct pool ld_ataraid_cbufpl;
95 1.1 thorpej
96 1.1 thorpej struct cbuf {
97 1.1 thorpej struct buf cb_buf; /* new I/O buf */
98 1.1 thorpej struct buf *cb_obp; /* ptr. to original I/O buf */
99 1.1 thorpej struct ld_ataraid_softc *cb_sc; /* pointer to ld softc */
100 1.1 thorpej u_int cb_comp; /* target component */
101 1.1 thorpej SIMPLEQ_ENTRY(cbuf) cb_q; /* fifo of component buffers */
102 1.1 thorpej };
103 1.1 thorpej
104 1.1 thorpej #define CBUF_GET() pool_get(&ld_ataraid_cbufpl, PR_NOWAIT);
105 1.1 thorpej #define CBUF_PUT(cbp) pool_put(&ld_ataraid_cbufpl, (cbp))
106 1.1 thorpej
107 1.1 thorpej static int
108 1.1 thorpej ld_ataraid_match(struct device *parent, struct cfdata *match, void *aux)
109 1.1 thorpej {
110 1.1 thorpej
111 1.1 thorpej return (1);
112 1.1 thorpej }
113 1.1 thorpej
114 1.1 thorpej static void
115 1.1 thorpej ld_ataraid_attach(struct device *parent, struct device *self, void *aux)
116 1.1 thorpej {
117 1.1 thorpej struct ld_ataraid_softc *sc = (void *) self;
118 1.1 thorpej struct ld_softc *ld = &sc->sc_ld;
119 1.1 thorpej struct ataraid_array_info *aai = aux;
120 1.1 thorpej const char *level;
121 1.1 thorpej struct vnode *vp;
122 1.1 thorpej char unklev[32];
123 1.1 thorpej u_int i;
124 1.1 thorpej
125 1.1 thorpej if (ld_ataraid_initialized == 0) {
126 1.1 thorpej ld_ataraid_initialized = 1;
127 1.1 thorpej pool_init(&ld_ataraid_cbufpl, sizeof(struct cbuf), 0,
128 1.1 thorpej 0, 0, "ldcbuf", NULL);
129 1.1 thorpej }
130 1.1 thorpej
131 1.1 thorpej sc->sc_aai = aai; /* this data persists */
132 1.1 thorpej
133 1.1 thorpej ld->sc_maxxfer = MAXPHYS * aai->aai_width; /* XXX */
134 1.1 thorpej ld->sc_secperunit = aai->aai_capacity;
135 1.1 thorpej ld->sc_secsize = 512; /* XXX */
136 1.1 thorpej ld->sc_maxqueuecnt = 128; /* XXX */
137 1.1 thorpej ld->sc_dump = ld_ataraid_dump;
138 1.1 thorpej
139 1.1 thorpej switch (aai->aai_level) {
140 1.1 thorpej case AAI_L_SPAN:
141 1.1 thorpej level = "SPAN";
142 1.1 thorpej ld->sc_start = ld_ataraid_start_span;
143 1.1 thorpej sc->sc_iodone = ld_ataraid_iodone_raid0;
144 1.1 thorpej break;
145 1.1 thorpej
146 1.1 thorpej case AAI_L_RAID0:
147 1.1 thorpej level = "RAID0";
148 1.1 thorpej ld->sc_start = ld_ataraid_start_raid0;
149 1.1 thorpej sc->sc_iodone = ld_ataraid_iodone_raid0;
150 1.1 thorpej break;
151 1.1 thorpej
152 1.1 thorpej case AAI_L_RAID1:
153 1.1 thorpej level = "RAID1";
154 1.1 thorpej break;
155 1.1 thorpej
156 1.1 thorpej case AAI_L_RAID0 | AAI_L_RAID1:
157 1.1 thorpej level = "RAID0+1";
158 1.1 thorpej break;
159 1.1 thorpej
160 1.1 thorpej default:
161 1.1 thorpej sprintf(unklev, "<unknown level 0x%x>", aai->aai_level);
162 1.1 thorpej level = unklev;
163 1.1 thorpej }
164 1.1 thorpej
165 1.1 thorpej aprint_naive(": ATA %s array\n", level);
166 1.1 thorpej aprint_normal(": %s ATA %s array\n",
167 1.1 thorpej ata_raid_type_name(aai->aai_type), level);
168 1.1 thorpej
169 1.1 thorpej if (ld->sc_start == NULL) {
170 1.1 thorpej aprint_error("%s: unsupported array type\n",
171 1.1 thorpej ld->sc_dv.dv_xname);
172 1.1 thorpej return;
173 1.1 thorpej }
174 1.1 thorpej
175 1.1 thorpej /*
176 1.1 thorpej * We get a geometry from the device; use it.
177 1.1 thorpej */
178 1.1 thorpej ld->sc_nheads = aai->aai_heads;
179 1.1 thorpej ld->sc_nsectors = aai->aai_sectors;
180 1.1 thorpej ld->sc_ncylinders = aai->aai_cylinders;
181 1.1 thorpej
182 1.1 thorpej /*
183 1.1 thorpej * Configure all the component disks.
184 1.1 thorpej */
185 1.1 thorpej for (i = 0; i < aai->aai_ndisks; i++) {
186 1.1 thorpej struct ataraid_disk_info *adi = &aai->aai_disks[i];
187 1.1 thorpej int bmajor, error;
188 1.1 thorpej dev_t dev;
189 1.1 thorpej
190 1.1 thorpej bmajor = devsw_name2blk(adi->adi_dev->dv_xname, NULL, 0);
191 1.1 thorpej dev = MAKEDISKDEV(bmajor, adi->adi_dev->dv_unit, RAW_PART);
192 1.1 thorpej error = bdevvp(dev, &vp);
193 1.1 thorpej if (error)
194 1.3 thorpej break;
195 1.1 thorpej error = VOP_OPEN(vp, FREAD|FWRITE, NOCRED, 0);
196 1.1 thorpej if (error) {
197 1.1 thorpej vput(vp);
198 1.1 thorpej /*
199 1.1 thorpej * XXX This is bogus. We should just mark the
200 1.1 thorpej * XXX component as FAILED, and write-back new
201 1.1 thorpej * XXX config blocks.
202 1.1 thorpej */
203 1.3 thorpej break;
204 1.1 thorpej }
205 1.1 thorpej
206 1.1 thorpej VOP_UNLOCK(vp, 0);
207 1.1 thorpej sc->sc_vnodes[i] = vp;
208 1.1 thorpej }
209 1.3 thorpej if (i == aai->aai_ndisks) {
210 1.3 thorpej ld->sc_flags = LDF_ENABLED;
211 1.3 thorpej goto finish;
212 1.3 thorpej }
213 1.1 thorpej
214 1.1 thorpej for (i = 0; i < aai->aai_ndisks; i++) {
215 1.1 thorpej vp = sc->sc_vnodes[i];
216 1.1 thorpej sc->sc_vnodes[i] = NULL;
217 1.3 thorpej if (vp != NULL)
218 1.6 darrenr (void) vn_close(vp, FREAD|FWRITE, NOCRED, curlwp);
219 1.1 thorpej }
220 1.3 thorpej
221 1.3 thorpej finish:
222 1.3 thorpej ldattach(ld);
223 1.1 thorpej }
224 1.1 thorpej
225 1.1 thorpej static struct cbuf *
226 1.1 thorpej ld_ataraid_make_cbuf(struct ld_ataraid_softc *sc, struct buf *bp,
227 1.1 thorpej u_int comp, daddr_t bn, caddr_t addr, long bcount)
228 1.1 thorpej {
229 1.1 thorpej struct cbuf *cbp;
230 1.1 thorpej
231 1.1 thorpej cbp = CBUF_GET();
232 1.1 thorpej if (cbp == NULL)
233 1.1 thorpej return (NULL);
234 1.4 thorpej BUF_INIT(&cbp->cb_buf);
235 1.1 thorpej cbp->cb_buf.b_flags = bp->b_flags | B_CALL;
236 1.1 thorpej cbp->cb_buf.b_iodone = sc->sc_iodone;
237 1.1 thorpej cbp->cb_buf.b_proc = bp->b_proc;
238 1.1 thorpej cbp->cb_buf.b_vp = sc->sc_vnodes[comp];
239 1.1 thorpej cbp->cb_buf.b_dev = sc->sc_vnodes[comp]->v_rdev;
240 1.1 thorpej cbp->cb_buf.b_blkno = bn + sc->sc_aai->aai_offset;
241 1.1 thorpej cbp->cb_buf.b_data = addr;
242 1.1 thorpej cbp->cb_buf.b_bcount = bcount;
243 1.1 thorpej
244 1.1 thorpej /* Context for iodone */
245 1.1 thorpej cbp->cb_obp = bp;
246 1.1 thorpej cbp->cb_sc = sc;
247 1.1 thorpej cbp->cb_comp = comp;
248 1.1 thorpej
249 1.1 thorpej return (cbp);
250 1.1 thorpej }
251 1.1 thorpej
252 1.1 thorpej static int
253 1.1 thorpej ld_ataraid_start_span(struct ld_softc *ld, struct buf *bp)
254 1.1 thorpej {
255 1.1 thorpej struct ld_ataraid_softc *sc = (void *) ld;
256 1.1 thorpej struct ataraid_array_info *aai = sc->sc_aai;
257 1.1 thorpej struct ataraid_disk_info *adi;
258 1.1 thorpej SIMPLEQ_HEAD(, cbuf) cbufq;
259 1.1 thorpej struct cbuf *cbp;
260 1.1 thorpej caddr_t addr;
261 1.1 thorpej daddr_t bn;
262 1.1 thorpej long bcount, rcount;
263 1.1 thorpej u_int comp;
264 1.1 thorpej
265 1.1 thorpej /* Allocate component buffers. */
266 1.1 thorpej SIMPLEQ_INIT(&cbufq);
267 1.1 thorpej addr = bp->b_data;
268 1.1 thorpej
269 1.1 thorpej /* Find the first component. */
270 1.1 thorpej comp = 0;
271 1.1 thorpej adi = &aai->aai_disks[comp];
272 1.1 thorpej bn = bp->b_rawblkno;
273 1.1 thorpej while (bn >= adi->adi_compsize) {
274 1.1 thorpej bn -= adi->adi_compsize;
275 1.1 thorpej adi = &aai->aai_disks[++comp];
276 1.1 thorpej }
277 1.1 thorpej
278 1.1 thorpej bp->b_resid = bp->b_bcount;
279 1.1 thorpej
280 1.1 thorpej for (bcount = bp->b_bcount; bcount > 0; bcount -= rcount) {
281 1.1 thorpej rcount = bp->b_bcount;
282 1.1 thorpej if ((adi->adi_compsize - bn) < btodb(rcount))
283 1.1 thorpej rcount = dbtob(adi->adi_compsize - bn);
284 1.1 thorpej
285 1.1 thorpej cbp = ld_ataraid_make_cbuf(sc, bp, comp, bn, addr, rcount);
286 1.1 thorpej if (cbp == NULL) {
287 1.1 thorpej /* Free the already allocated component buffers. */
288 1.1 thorpej while ((cbp = SIMPLEQ_FIRST(&cbufq)) != NULL) {
289 1.1 thorpej SIMPLEQ_REMOVE_HEAD(&cbufq, cb_q);
290 1.1 thorpej CBUF_PUT(cbp);
291 1.1 thorpej }
292 1.5 thorpej return (EAGAIN);
293 1.1 thorpej }
294 1.1 thorpej
295 1.1 thorpej /*
296 1.1 thorpej * For a span, we always know we advance to the next disk,
297 1.1 thorpej * and always start at offset 0 on that disk.
298 1.1 thorpej */
299 1.1 thorpej adi = &aai->aai_disks[++comp];
300 1.1 thorpej bn = 0;
301 1.1 thorpej
302 1.1 thorpej SIMPLEQ_INSERT_TAIL(&cbufq, cbp, cb_q);
303 1.1 thorpej addr += rcount;
304 1.1 thorpej }
305 1.1 thorpej
306 1.1 thorpej /* Now fire off the requests. */
307 1.1 thorpej while ((cbp = SIMPLEQ_FIRST(&cbufq)) != NULL) {
308 1.1 thorpej SIMPLEQ_REMOVE_HEAD(&cbufq, cb_q);
309 1.1 thorpej if ((cbp->cb_buf.b_flags & B_READ) == 0)
310 1.1 thorpej cbp->cb_buf.b_vp->v_numoutput++;
311 1.1 thorpej VOP_STRATEGY(&cbp->cb_buf);
312 1.1 thorpej }
313 1.1 thorpej
314 1.1 thorpej return (0);
315 1.1 thorpej }
316 1.1 thorpej
317 1.1 thorpej static int
318 1.1 thorpej ld_ataraid_start_raid0(struct ld_softc *ld, struct buf *bp)
319 1.1 thorpej {
320 1.1 thorpej struct ld_ataraid_softc *sc = (void *) ld;
321 1.1 thorpej struct ataraid_array_info *aai = sc->sc_aai;
322 1.1 thorpej SIMPLEQ_HEAD(, cbuf) cbufq;
323 1.1 thorpej struct cbuf *cbp;
324 1.1 thorpej caddr_t addr;
325 1.1 thorpej daddr_t bn, cbn, tbn, off;
326 1.1 thorpej long bcount, rcount;
327 1.1 thorpej u_int comp;
328 1.1 thorpej
329 1.1 thorpej /* Allocate component buffers. */
330 1.1 thorpej SIMPLEQ_INIT(&cbufq);
331 1.1 thorpej addr = bp->b_data;
332 1.1 thorpej bn = bp->b_rawblkno;
333 1.1 thorpej
334 1.1 thorpej bp->b_resid = bp->b_bcount;
335 1.1 thorpej
336 1.1 thorpej for (bcount = bp->b_bcount; bcount > 0; bcount -= rcount) {
337 1.1 thorpej tbn = bn / aai->aai_interleave;
338 1.1 thorpej off = bn % aai->aai_interleave;
339 1.1 thorpej
340 1.1 thorpej if (__predict_false(tbn == aai->aai_capacity /
341 1.1 thorpej aai->aai_interleave)) {
342 1.1 thorpej /* Last stripe. */
343 1.1 thorpej daddr_t sz = (aai->aai_capacity -
344 1.1 thorpej (tbn * aai->aai_interleave)) /
345 1.1 thorpej aai->aai_width;
346 1.1 thorpej comp = off / sz;
347 1.1 thorpej cbn = ((tbn / aai->aai_width) * aai->aai_interleave) +
348 1.1 thorpej (off % sz);
349 1.1 thorpej rcount = min(bcount, dbtob(sz));
350 1.1 thorpej } else {
351 1.1 thorpej comp = tbn % aai->aai_width;
352 1.1 thorpej cbn = ((tbn / aai->aai_width) * aai->aai_interleave) +
353 1.1 thorpej off;
354 1.1 thorpej rcount = min(bcount, dbtob(aai->aai_interleave - off));
355 1.1 thorpej }
356 1.1 thorpej
357 1.1 thorpej cbp = ld_ataraid_make_cbuf(sc, bp, comp, cbn, addr, rcount);
358 1.1 thorpej if (cbp == NULL) {
359 1.1 thorpej /* Free the already allocated component buffers. */
360 1.1 thorpej while ((cbp = SIMPLEQ_FIRST(&cbufq)) != NULL) {
361 1.1 thorpej SIMPLEQ_REMOVE_HEAD(&cbufq, cb_q);
362 1.1 thorpej CBUF_PUT(cbp);
363 1.1 thorpej }
364 1.5 thorpej return (EAGAIN);
365 1.1 thorpej }
366 1.1 thorpej SIMPLEQ_INSERT_TAIL(&cbufq, cbp, cb_q);
367 1.1 thorpej bn += btodb(rcount);
368 1.1 thorpej addr += rcount;
369 1.1 thorpej }
370 1.1 thorpej
371 1.1 thorpej /* Now fire off the requests. */
372 1.1 thorpej while ((cbp = SIMPLEQ_FIRST(&cbufq)) != NULL) {
373 1.1 thorpej SIMPLEQ_REMOVE_HEAD(&cbufq, cb_q);
374 1.1 thorpej if ((cbp->cb_buf.b_flags & B_READ) == 0)
375 1.1 thorpej cbp->cb_buf.b_vp->v_numoutput++;
376 1.1 thorpej VOP_STRATEGY(&cbp->cb_buf);
377 1.1 thorpej }
378 1.1 thorpej
379 1.1 thorpej return (0);
380 1.1 thorpej }
381 1.1 thorpej
382 1.1 thorpej /*
383 1.1 thorpej * Called at interrupt time. Mark the component as done and if all
384 1.1 thorpej * components are done, take an "interrupt".
385 1.1 thorpej */
386 1.1 thorpej static void
387 1.1 thorpej ld_ataraid_iodone_raid0(struct buf *vbp)
388 1.1 thorpej {
389 1.1 thorpej struct cbuf *cbp = (struct cbuf *) vbp;
390 1.1 thorpej struct buf *bp = cbp->cb_obp;
391 1.1 thorpej struct ld_ataraid_softc *sc = cbp->cb_sc;
392 1.1 thorpej long count;
393 1.1 thorpej int s;
394 1.1 thorpej
395 1.1 thorpej s = splbio();
396 1.1 thorpej
397 1.1 thorpej if (cbp->cb_buf.b_flags & B_ERROR) {
398 1.1 thorpej bp->b_flags |= B_ERROR;
399 1.1 thorpej bp->b_error = cbp->cb_buf.b_error ?
400 1.1 thorpej cbp->cb_buf.b_error : EIO;
401 1.1 thorpej
402 1.1 thorpej /* XXX Update component config blocks. */
403 1.1 thorpej
404 1.1 thorpej printf("%s: error %d on component %d\n",
405 1.1 thorpej sc->sc_ld.sc_dv.dv_xname, bp->b_error, cbp->cb_comp);
406 1.1 thorpej }
407 1.1 thorpej count = cbp->cb_buf.b_bcount;
408 1.1 thorpej CBUF_PUT(cbp);
409 1.1 thorpej
410 1.1 thorpej /* If all done, "interrupt". */
411 1.1 thorpej bp->b_resid -= count;
412 1.1 thorpej if (bp->b_resid < 0)
413 1.1 thorpej panic("ld_ataraid_iodone_raid0: count");
414 1.1 thorpej if (bp->b_resid == 0)
415 1.1 thorpej lddone(&sc->sc_ld, bp);
416 1.1 thorpej splx(s);
417 1.1 thorpej }
418 1.1 thorpej
419 1.1 thorpej static int
420 1.1 thorpej ld_ataraid_dump(struct ld_softc *sc, void *data, int blkno, int blkcnt)
421 1.1 thorpej {
422 1.1 thorpej
423 1.1 thorpej return (EIO);
424 1.1 thorpej }
425