> Can somebody mail me the 1.104.2.3 rev of this file? I tried to get to
> ftp.freebsd.org, but it's unavailable.
You don't want that rev, you just want the changes made that John
pointed out. Try this with patch -R
Nate
----------
===================================================================
RCS file: /home/CVS/src/sys/kern/vfs_bio.c,v
retrieving revision 1.104.2.5
retrieving revision 1.104.2.6
diff -u -r1.104.2.5 -r1.104.2.6
--- vfs_bio.c 1997/05/31 10:36:23 1.104.2.5
+++ vfs_bio.c 1997/06/21 13:32:58 1.104.2.6
@@ -887,8 +887,10 @@
if (!bp) {
/* wait for a free buffer of any kind */
needsbuffer = 1;
- tsleep(&needsbuffer,
- (PRIBIO + 1) | slpflag, "newbuf", slptimeo);
+ do
+ tsleep(&needsbuffer, (PRIBIO + 1) | slpflag, "newbuf",
+ slptimeo);
+ while (needsbuffer);
return (0);
}
Index: vfs_bio.c