home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / unix / ultrix / 6935 < prev    next >
Encoding:
Text File  |  1992-09-15  |  1.8 KB  |  51 lines

  1. Newsgroups: comp.unix.ultrix
  2. Path: sparky!uunet!decwrl!pa.dec.com!engage.pko.dec.com!nntpd.lkg.dec.com!nntpd2.cxo.dec.com!nabeth!alan
  3. From: alan@nabeth.enet.dec.com (Alan Rollow - Alan's Home for Wayward Tumbleweeds.)
  4. Subject: Re: DEC 2100 - memory config help please...
  5. Message-ID: <1992Sep15.181949.9429@nntpd2.cxo.dec.com>
  6. Lines: 38
  7. Sender: alan@nabeth (Alan Rollow - Alan's Home for Wayward Tumbleweeds.)
  8. Reply-To: alan@nabeth.enet.dec.com (Alan Rollow - Alan's Home for Wayward Tumbleweeds.)
  9. Organization: Digital Equipment Corporation
  10. References: <1992Sep14.150930.6781@trentu.ca> <1992Sep14.172723.14101@fs7.ece.cmu.edu> <1992Sep14.194517.12300@nntpd2.cxo.dec.com>
  11. Date: Tue, 15 Sep 1992 18:19:49 GMT
  12.  
  13.  
  14. In article <1992Sep14.194517.12300@nntpd2.cxo.dec.com>, alan@nabeth.enet.dec.com (Alan Rollow - Alan's Home for Wayward Tumbleweeds.) writes:
  15.  
  16. > [ The rather mysterious combination of words... ]
  17. >
  18. > "larger tapes used by the kernel"
  19.  
  20. Where I actually meant to say "larger tables used by the kernel".
  21.  
  22. To illustrate and actually say something useful...
  23.  
  24. % pstat -T
  25.  167/ 609       files
  26.  138/ 444       gnodes
  27.   50/ 288       processes
  28.   36/  40/  76  active/reclaimable/total texts
  29.  136/1843       00k swap
  30.  
  31. The tables of interest here are the file table (struct file),
  32. the gnode table (struct gnode), the process table (struct proc)
  33. and the text table (struct text).  It so happens that the sizes
  34. of these data structure are:
  35.  
  36. File:  56
  37. Gnode: 228
  38. Proc:  312
  39. Text:  48
  40.  
  41. The result of the math is that these tables use 228,840 bytes
  42. of kernel space.  Not very much compared to some systems that
  43. are expected to support hundreds of users, but still an interesting
  44. part of the 3-4 MB used by the loaded kernel.
  45.  
  46. Note: Example used here was taken from a DECstation 5000/200
  47. running ULTRIX V4.2.
  48. --
  49. Alan Rollow                alan@nabeth.cxo.dec.com
  50.  
  51.