home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / unix / bsd / 5308 < prev    next >
Encoding:
Internet Message Format  |  1992-09-08  |  1.0 KB

  1. Path: sparky!uunet!spool.mu.edu!agate!soda.berkeley.edu!wjolitz
  2. From: wjolitz@soda.berkeley.edu (William F. Jolitz)
  3. Newsgroups: comp.unix.bsd
  4. Subject: Re: 8Mb stability patches DESPERATELY needed!
  5. Date: 8 Sep 1992 17:49:47 GMT
  6. Organization: U.C. Berkeley, CS Undergraduate Association
  7. Lines: 15
  8. Message-ID: <18ip3rINNg2m@agate.berkeley.edu>
  9. References: <1992Sep8.062725.9038@marlin.jcu.edu.au>
  10. NNTP-Posting-Host: soda.berkeley.edu
  11.  
  12. In article <1992Sep8.062725.9038@marlin.jcu.edu.au> cejjb@marlin.jcu.edu.au (Jeffrey J Bird) writes:
  13. >I am in very desparate need of the patches that stop 386BSD 0.1
  14. >freezing when there is more than 8Mb of memory in the machine.
  15.  
  16. This is a buffer cache problem, dealing with fragmentation of an internal
  17. resource. The fix for this, the "panic kmem" problem, and the resulting
  18. instability are to insert the following line before line 171 ("if(nbuf==0)..")
  19. of machdep.c:
  20.  
  21.     bufpages = min (NKMEMCLUSTERS/2, bugpages);     /* XXX */
  22.  
  23. The real solution to this and other problems is related to 0.2 new work.
  24.  
  25. Lynne.
  26.  
  27.