FreeBSD/Linux Kernel Cross Reference
sys/fs/nwfs/nwfs_io.c
1 /*
2 * Copyright (c) 1999, Boris Popov
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by Boris Popov.
16 * 4. Neither the name of the author nor the names of any co-contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * $FreeBSD: releng/5.0/sys/fs/nwfs/nwfs_io.c 101308 2002-08-04 10:29:36Z jeff $
33 *
34 */
35 #include <sys/param.h>
36 #include <sys/systm.h>
37 #include <sys/resourcevar.h> /* defines plimit structure in proc struct */
38 #include <sys/kernel.h>
39 #include <sys/bio.h>
40 #include <sys/buf.h>
41 #include <sys/proc.h>
42 #include <sys/mount.h>
43 #include <sys/namei.h>
44 #include <sys/vnode.h>
45 #include <sys/dirent.h>
46 #include <sys/signalvar.h>
47 #include <sys/sysctl.h>
48
49 #include <vm/vm.h>
50 #include <vm/vm_page.h>
51 #include <vm/vm_extern.h>
52 #include <vm/vm_object.h>
53 #include <vm/vm_pager.h>
54 #include <vm/vnode_pager.h>
55
56 #include <netncp/ncp.h>
57 #include <netncp/ncp_conn.h>
58 #include <netncp/ncp_subr.h>
59 #include <netncp/ncp_ncp.h>
60
61 #include <fs/nwfs/nwfs.h>
62 #include <fs/nwfs/nwfs_node.h>
63 #include <fs/nwfs/nwfs_subr.h>
64
65 static int nwfs_fastlookup = 1;
66
67 SYSCTL_DECL(_vfs_nwfs);
68 SYSCTL_INT(_vfs_nwfs, OID_AUTO, fastlookup, CTLFLAG_RW, &nwfs_fastlookup, 0, "");
69
70
71 extern int nwfs_pbuf_freecnt;
72
73 #define DE_SIZE (sizeof(struct dirent))
74 #define NWFS_RWCACHE
75
76 static int
77 nwfs_readvdir(struct vnode *vp, struct uio *uio, struct ucred *cred) {
78 struct nwmount *nmp = VTONWFS(vp);
79 int error, count, i;
80 struct dirent dp;
81 struct nwnode *np = VTONW(vp);
82 struct nw_entry_info fattr;
83 struct vnode *newvp;
84 struct componentname cn;
85 ncpfid fid;
86
87 np = VTONW(vp);
88 NCPVNDEBUG("dirname='%s'\n",np->n_name);
89 if (uio->uio_resid < DE_SIZE || (uio->uio_offset < 0))
90 return (EINVAL);
91 error = 0;
92 count = 0;
93 i = uio->uio_offset / DE_SIZE; /* offset in directory */
94 if (i == 0) {
95 error = ncp_initsearch(vp, uio->uio_td, cred);
96 if (error) {
97 NCPVNDEBUG("cannot initialize search, error=%d",error);
98 return( error );
99 }
100 }
101
102 for (; uio->uio_resid >= DE_SIZE; i++) {
103 bzero((char *) &dp, DE_SIZE);
104 dp.d_reclen = DE_SIZE;
105 switch (i) {
106 case 0: /* `.' */
107 case 1: /* `..' */
108 dp.d_fileno = (i == 0) ? np->n_fid.f_id : np->n_parent.f_id;
109 if (!dp.d_fileno) dp.d_fileno = NWFS_ROOT_INO;
110 dp.d_namlen = i + 1;
111 dp.d_name[0] = '.';
112 dp.d_name[1] = '.';
113 dp.d_name[i + 1] = '\0';
114 dp.d_type = DT_DIR;
115 break;
116 default:
117 error = ncp_search_for_file_or_subdir(nmp, &np->n_seq, &fattr, uio->uio_td, cred);
118 if (error && error < 0x80) break;
119 dp.d_fileno = fattr.dirEntNum;
120 dp.d_type = (fattr.attributes & aDIR) ? DT_DIR : DT_REG;
121 dp.d_namlen = fattr.nameLen;
122 bcopy(fattr.entryName, dp.d_name, dp.d_namlen);
123 dp.d_name[dp.d_namlen] = '\0';
124 #if 0
125 if (error && eofflag) {
126 /* *eofflag = 1;*/
127 break;
128 }
129 #endif
130 break;
131 }
132 if (nwfs_fastlookup && !error && i > 1) {
133 fid.f_id = fattr.dirEntNum;
134 fid.f_parent = np->n_fid.f_id;
135 error = nwfs_nget(vp->v_mount, fid, &fattr, vp, &newvp);
136 if (!error) {
137 VTONW(newvp)->n_ctime = VTONW(newvp)->n_vattr.va_ctime.tv_sec;
138 cn.cn_nameptr = dp.d_name;
139 cn.cn_namelen = dp.d_namlen;
140 cache_enter(vp, newvp, &cn);
141 vput(newvp);
142 } else
143 error = 0;
144 }
145 if (error >= 0x80) {
146 error = 0;
147 break;
148 }
149 if ((error = uiomove((caddr_t)&dp, DE_SIZE, uio)))
150 break;
151 }
152
153 uio->uio_offset = i * DE_SIZE;
154 return (error);
155 }
156
157 int
158 nwfs_readvnode(struct vnode *vp, struct uio *uiop, struct ucred *cred) {
159 struct nwmount *nmp = VFSTONWFS(vp->v_mount);
160 struct nwnode *np = VTONW(vp);
161 struct thread *td;
162 struct vattr vattr;
163 int error, biosize;
164
165 if (vp->v_type != VREG && vp->v_type != VDIR) {
166 printf("%s: vn types other than VREG or VDIR are unsupported !\n",__func__);
167 return EIO;
168 }
169 if (uiop->uio_resid == 0) return 0;
170 if (uiop->uio_offset < 0) return EINVAL;
171 /* if (uiop->uio_offset + uiop->uio_resid > nmp->nm_maxfilesize)
172 return (EFBIG);*/
173 td = uiop->uio_td;
174 if (vp->v_type == VDIR) {
175 error = nwfs_readvdir(vp, uiop, cred);
176 return error;
177 }
178 biosize = NWFSTOCONN(nmp)->buffer_size;
179 if (np->n_flag & NMODIFIED) {
180 nwfs_attr_cacheremove(vp);
181 error = VOP_GETATTR(vp, &vattr, cred, td);
182 if (error) return (error);
183 np->n_mtime = vattr.va_mtime.tv_sec;
184 } else {
185 error = VOP_GETATTR(vp, &vattr, cred, td);
186 if (error) return (error);
187 if (np->n_mtime != vattr.va_mtime.tv_sec) {
188 error = nwfs_vinvalbuf(vp, V_SAVE, cred, td, 1);
189 if (error) return (error);
190 np->n_mtime = vattr.va_mtime.tv_sec;
191 }
192 }
193 error = ncp_read(NWFSTOCONN(nmp), &np->n_fh, uiop,cred);
194 return (error);
195 }
196
197 int
198 nwfs_writevnode(vp, uiop, cred, ioflag)
199 struct vnode *vp;
200 struct uio *uiop;
201 struct ucred *cred;
202 int ioflag;
203 {
204 struct nwmount *nmp = VTONWFS(vp);
205 struct nwnode *np = VTONW(vp);
206 struct thread *td;
207 /* struct vattr vattr;*/
208 int error = 0;
209
210 if (vp->v_type != VREG) {
211 printf("%s: vn types other than VREG unsupported !\n",__func__);
212 return EIO;
213 }
214 NCPVNDEBUG("ofs=%d,resid=%d\n",(int)uiop->uio_offset, uiop->uio_resid);
215 if (uiop->uio_offset < 0) return EINVAL;
216 /* if (uiop->uio_offset + uiop->uio_resid > nmp->nm_maxfilesize)
217 return (EFBIG);*/
218 td = uiop->uio_td;
219 if (ioflag & (IO_APPEND | IO_SYNC)) {
220 if (np->n_flag & NMODIFIED) {
221 nwfs_attr_cacheremove(vp);
222 error = nwfs_vinvalbuf(vp, V_SAVE, cred, td, 1);
223 if (error) return (error);
224 }
225 if (ioflag & IO_APPEND) {
226 /* We can relay only on local information about file size,
227 * because until file is closed NetWare will not return
228 * the correct size. */
229 #if notyet
230 nwfs_attr_cacheremove(vp);
231 error = VOP_GETATTR(vp, &vattr, cred, td);
232 if (error) return (error);
233 #endif
234 uiop->uio_offset = np->n_size;
235 }
236 }
237 if (uiop->uio_resid == 0) return 0;
238 if (td && uiop->uio_offset + uiop->uio_resid
239 > td->td_proc->p_rlimit[RLIMIT_FSIZE].rlim_cur) {
240 PROC_LOCK(td->td_proc);
241 psignal(td->td_proc, SIGXFSZ);
242 PROC_UNLOCK(td->td_proc);
243 return (EFBIG);
244 }
245 error = ncp_write(NWFSTOCONN(nmp), &np->n_fh, uiop, cred);
246 NCPVNDEBUG("after: ofs=%d,resid=%d\n",(int)uiop->uio_offset, uiop->uio_resid);
247 if (!error) {
248 if (uiop->uio_offset > np->n_size) {
249 np->n_vattr.va_size = np->n_size = uiop->uio_offset;
250 vnode_pager_setsize(vp, np->n_size);
251 }
252 }
253 return (error);
254 }
255
256 /*
257 * Do an I/O operation to/from a cache block.
258 */
259 int
260 nwfs_doio(bp, cr, td)
261 struct buf *bp;
262 struct ucred *cr;
263 struct thread *td;
264 {
265 struct uio *uiop;
266 struct vnode *vp;
267 struct nwnode *np;
268 struct nwmount *nmp;
269 int error = 0;
270 struct uio uio;
271 struct iovec io;
272
273 vp = bp->b_vp;
274 np = VTONW(vp);
275 nmp = VFSTONWFS(vp->v_mount);
276 uiop = &uio;
277 uiop->uio_iov = &io;
278 uiop->uio_iovcnt = 1;
279 uiop->uio_segflg = UIO_SYSSPACE;
280 uiop->uio_td = td;
281 if (bp->b_iocmd == BIO_READ) {
282 io.iov_len = uiop->uio_resid = bp->b_bcount;
283 io.iov_base = bp->b_data;
284 uiop->uio_rw = UIO_READ;
285 switch (vp->v_type) {
286 case VREG:
287 uiop->uio_offset = ((off_t)bp->b_blkno) * DEV_BSIZE;
288 error = ncp_read(NWFSTOCONN(nmp), &np->n_fh, uiop, cr);
289 if (error)
290 break;
291 if (uiop->uio_resid) {
292 int left = uiop->uio_resid;
293 int nread = bp->b_bcount - left;
294 if (left > 0)
295 bzero((char *)bp->b_data + nread, left);
296 }
297 break;
298 /* case VDIR:
299 nfsstats.readdir_bios++;
300 uiop->uio_offset = ((u_quad_t)bp->b_lblkno) * NFS_DIRBLKSIZ;
301 if (nmp->nm_flag & NFSMNT_RDIRPLUS) {
302 error = nfs_readdirplusrpc(vp, uiop, cr);
303 if (error == NFSERR_NOTSUPP)
304 nmp->nm_flag &= ~NFSMNT_RDIRPLUS;
305 }
306 if ((nmp->nm_flag & NFSMNT_RDIRPLUS) == 0)
307 error = nfs_readdirrpc(vp, uiop, cr);
308 if (error == 0 && uiop->uio_resid == bp->b_bcount)
309 bp->b_flags |= B_INVAL;
310 break;
311 */
312 default:
313 printf("nwfs_doio: type %x unexpected\n",vp->v_type);
314 break;
315 };
316 if (error) {
317 bp->b_ioflags |= BIO_ERROR;
318 bp->b_error = error;
319 }
320 } else { /* write */
321 if (((bp->b_blkno * DEV_BSIZE) + bp->b_dirtyend) > np->n_size)
322 bp->b_dirtyend = np->n_size - (bp->b_blkno * DEV_BSIZE);
323
324 if (bp->b_dirtyend > bp->b_dirtyoff) {
325 io.iov_len = uiop->uio_resid = bp->b_dirtyend - bp->b_dirtyoff;
326 uiop->uio_offset = ((off_t)bp->b_blkno) * DEV_BSIZE + bp->b_dirtyoff;
327 io.iov_base = (char *)bp->b_data + bp->b_dirtyoff;
328 uiop->uio_rw = UIO_WRITE;
329 bp->b_flags |= B_WRITEINPROG;
330 error = ncp_write(NWFSTOCONN(nmp), &np->n_fh, uiop, cr);
331 bp->b_flags &= ~B_WRITEINPROG;
332
333 /*
334 * For an interrupted write, the buffer is still valid
335 * and the write hasn't been pushed to the server yet,
336 * so we can't set BIO_ERROR and report the interruption
337 * by setting B_EINTR. For the B_ASYNC case, B_EINTR
338 * is not relevant, so the rpc attempt is essentially
339 * a noop. For the case of a V3 write rpc not being
340 * committed to stable storage, the block is still
341 * dirty and requires either a commit rpc or another
342 * write rpc with iomode == NFSV3WRITE_FILESYNC before
343 * the block is reused. This is indicated by setting
344 * the B_DELWRI and B_NEEDCOMMIT flags.
345 */
346 if (error == EINTR
347 || (!error && (bp->b_flags & B_NEEDCOMMIT))) {
348 int s;
349
350 s = splbio();
351 bp->b_flags &= ~(B_INVAL|B_NOCACHE);
352 if ((bp->b_flags & B_ASYNC) == 0)
353 bp->b_flags |= B_EINTR;
354 if ((bp->b_flags & B_PAGING) == 0) {
355 bdirty(bp);
356 bp->b_flags &= ~B_DONE;
357 }
358 if ((bp->b_flags & B_ASYNC) == 0)
359 bp->b_flags |= B_EINTR;
360 splx(s);
361 } else {
362 if (error) {
363 bp->b_ioflags |= BIO_ERROR;
364 bp->b_error /*= np->n_error */= error;
365 /* np->n_flag |= NWRITEERR;*/
366 }
367 bp->b_dirtyoff = bp->b_dirtyend = 0;
368 }
369 } else {
370 bp->b_resid = 0;
371 bufdone(bp);
372 return (0);
373 }
374 }
375 bp->b_resid = uiop->uio_resid;
376 bufdone(bp);
377 return (error);
378 }
379
380 /*
381 * Vnode op for VM getpages.
382 * Wish wish .... get rid from multiple IO routines
383 */
384 int
385 nwfs_getpages(ap)
386 struct vop_getpages_args /* {
387 struct vnode *a_vp;
388 vm_page_t *a_m;
389 int a_count;
390 int a_reqpage;
391 vm_ooffset_t a_offset;
392 } */ *ap;
393 {
394 #ifndef NWFS_RWCACHE
395 return vop_stdgetpages(ap);(ap->a_vp, ap->a_m, ap->a_count,
396 #else
397 int i, error, nextoff, size, toff, npages, count;
398 struct uio uio;
399 struct iovec iov;
400 vm_offset_t kva;
401 struct buf *bp;
402 struct vnode *vp;
403 struct thread *td;
404 struct ucred *cred;
405 struct nwmount *nmp;
406 struct nwnode *np;
407 vm_page_t *pages;
408
409 vp = ap->a_vp;
410 td = curthread; /* XXX */
411 cred = td->td_ucred; /* XXX */
412 np = VTONW(vp);
413 nmp = VFSTONWFS(vp->v_mount);
414 pages = ap->a_m;
415 count = ap->a_count;
416
417 if (vp->v_object == NULL) {
418 printf("nwfs_getpages: called with non-merged cache vnode??\n");
419 return VM_PAGER_ERROR;
420 }
421
422 bp = getpbuf(&nwfs_pbuf_freecnt);
423 npages = btoc(count);
424 kva = (vm_offset_t) bp->b_data;
425 pmap_qenter(kva, pages, npages);
426
427 iov.iov_base = (caddr_t) kva;
428 iov.iov_len = count;
429 uio.uio_iov = &iov;
430 uio.uio_iovcnt = 1;
431 uio.uio_offset = IDX_TO_OFF(pages[0]->pindex);
432 uio.uio_resid = count;
433 uio.uio_segflg = UIO_SYSSPACE;
434 uio.uio_rw = UIO_READ;
435 uio.uio_td = td;
436
437 error = ncp_read(NWFSTOCONN(nmp), &np->n_fh, &uio,cred);
438 pmap_qremove(kva, npages);
439
440 relpbuf(bp, &nwfs_pbuf_freecnt);
441
442 if (error && (uio.uio_resid == count)) {
443 printf("nwfs_getpages: error %d\n",error);
444 vm_page_lock_queues();
445 for (i = 0; i < npages; i++) {
446 if (ap->a_reqpage != i)
447 vm_page_free(pages[i]);
448 }
449 vm_page_unlock_queues();
450 return VM_PAGER_ERROR;
451 }
452
453 size = count - uio.uio_resid;
454
455 vm_page_lock_queues();
456 for (i = 0, toff = 0; i < npages; i++, toff = nextoff) {
457 vm_page_t m;
458 nextoff = toff + PAGE_SIZE;
459 m = pages[i];
460
461 m->flags &= ~PG_ZERO;
462
463 if (nextoff <= size) {
464 m->valid = VM_PAGE_BITS_ALL;
465 m->dirty = 0;
466 } else {
467 int nvalid = ((size + DEV_BSIZE - 1) - toff) & ~(DEV_BSIZE - 1);
468 vm_page_set_validclean(m, 0, nvalid);
469 }
470
471 if (i != ap->a_reqpage) {
472 /*
473 * Whether or not to leave the page activated is up in
474 * the air, but we should put the page on a page queue
475 * somewhere (it already is in the object). Result:
476 * It appears that emperical results show that
477 * deactivating pages is best.
478 */
479
480 /*
481 * Just in case someone was asking for this page we
482 * now tell them that it is ok to use.
483 */
484 if (!error) {
485 if (m->flags & PG_WANTED)
486 vm_page_activate(m);
487 else
488 vm_page_deactivate(m);
489 vm_page_wakeup(m);
490 } else {
491 vm_page_free(m);
492 }
493 }
494 }
495 vm_page_unlock_queues();
496 return 0;
497 #endif /* NWFS_RWCACHE */
498 }
499
500 /*
501 * Vnode op for VM putpages.
502 * possible bug: all IO done in sync mode
503 * Note that vop_close always invalidate pages before close, so it's
504 * not necessary to open vnode.
505 */
506 int
507 nwfs_putpages(ap)
508 struct vop_putpages_args /* {
509 struct vnode *a_vp;
510 vm_page_t *a_m;
511 int a_count;
512 int a_sync;
513 int *a_rtvals;
514 vm_ooffset_t a_offset;
515 } */ *ap;
516 {
517 int error;
518 struct vnode *vp = ap->a_vp;
519 struct thread *td;
520 struct ucred *cred;
521
522 #ifndef NWFS_RWCACHE
523 td = curthread; /* XXX */
524 cred = td->td_ucred; /* XXX */
525 VOP_OPEN(vp, FWRITE, cred, td);
526 error = vop_stdputpages(ap);
527 VOP_CLOSE(vp, FWRITE, cred, td);
528 return error;
529 #else
530 struct uio uio;
531 struct iovec iov;
532 vm_offset_t kva;
533 struct buf *bp;
534 int i, npages, count;
535 int *rtvals;
536 struct nwmount *nmp;
537 struct nwnode *np;
538 vm_page_t *pages;
539
540 td = curthread; /* XXX */
541 cred = td->td_ucred; /* XXX */
542 /* VOP_OPEN(vp, FWRITE, cred, td);*/
543 np = VTONW(vp);
544 nmp = VFSTONWFS(vp->v_mount);
545 pages = ap->a_m;
546 count = ap->a_count;
547 rtvals = ap->a_rtvals;
548 npages = btoc(count);
549
550 for (i = 0; i < npages; i++) {
551 rtvals[i] = VM_PAGER_AGAIN;
552 }
553
554 bp = getpbuf(&nwfs_pbuf_freecnt);
555 kva = (vm_offset_t) bp->b_data;
556 pmap_qenter(kva, pages, npages);
557
558 iov.iov_base = (caddr_t) kva;
559 iov.iov_len = count;
560 uio.uio_iov = &iov;
561 uio.uio_iovcnt = 1;
562 uio.uio_offset = IDX_TO_OFF(pages[0]->pindex);
563 uio.uio_resid = count;
564 uio.uio_segflg = UIO_SYSSPACE;
565 uio.uio_rw = UIO_WRITE;
566 uio.uio_td = td;
567 NCPVNDEBUG("ofs=%d,resid=%d\n",(int)uio.uio_offset, uio.uio_resid);
568
569 error = ncp_write(NWFSTOCONN(nmp), &np->n_fh, &uio, cred);
570 /* VOP_CLOSE(vp, FWRITE, cred, td);*/
571 NCPVNDEBUG("paged write done: %d\n", error);
572
573 pmap_qremove(kva, npages);
574 relpbuf(bp, &nwfs_pbuf_freecnt);
575
576 if (!error) {
577 int nwritten = round_page(count - uio.uio_resid) / PAGE_SIZE;
578 for (i = 0; i < nwritten; i++) {
579 rtvals[i] = VM_PAGER_OK;
580 pages[i]->dirty = 0;
581 }
582 }
583 return rtvals[0];
584 #endif /* NWFS_RWCACHE */
585 }
586 /*
587 * Flush and invalidate all dirty buffers. If another process is already
588 * doing the flush, just wait for completion.
589 */
590 int
591 nwfs_vinvalbuf(vp, flags, cred, td, intrflg)
592 struct vnode *vp;
593 int flags;
594 struct ucred *cred;
595 struct thread *td;
596 int intrflg;
597 {
598 struct nwnode *np = VTONW(vp);
599 /* struct nwmount *nmp = VTONWFS(vp);*/
600 int error = 0, slpflag, slptimeo;
601
602 VI_LOCK(vp);
603 if (vp->v_iflag & VI_XLOCK) {
604 VI_UNLOCK(vp);
605 return (0);
606 }
607 VI_UNLOCK(vp);
608
609 if (intrflg) {
610 slpflag = PCATCH;
611 slptimeo = 2 * hz;
612 } else {
613 slpflag = 0;
614 slptimeo = 0;
615 }
616 while (np->n_flag & NFLUSHINPROG) {
617 np->n_flag |= NFLUSHWANT;
618 error = tsleep((caddr_t)&np->n_flag, PRIBIO + 2, "nwfsvinv", slptimeo);
619 error = ncp_chkintr(NWFSTOCONN(VTONWFS(vp)), td->td_proc);
620 if (error == EINTR && intrflg)
621 return EINTR;
622 }
623 np->n_flag |= NFLUSHINPROG;
624 error = vinvalbuf(vp, flags, cred, td, slpflag, 0);
625 while (error) {
626 if (intrflg && (error == ERESTART || error == EINTR)) {
627 np->n_flag &= ~NFLUSHINPROG;
628 if (np->n_flag & NFLUSHWANT) {
629 np->n_flag &= ~NFLUSHWANT;
630 wakeup((caddr_t)&np->n_flag);
631 }
632 return EINTR;
633 }
634 error = vinvalbuf(vp, flags, cred, td, slpflag, 0);
635 }
636 np->n_flag &= ~(NMODIFIED | NFLUSHINPROG);
637 if (np->n_flag & NFLUSHWANT) {
638 np->n_flag &= ~NFLUSHWANT;
639 wakeup((caddr_t)&np->n_flag);
640 }
641 return (error);
642 }
Cache object: 398d37d7f54899b032daf5752b01d166
|