home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / comp / unix / aix / 11715 < prev    next >
Encoding:
Text File  |  1992-11-18  |  1.5 KB  |  34 lines

  1. Newsgroups: comp.unix.aix
  2. Path: sparky!uunet!cs.utexas.edu!milano!cactus.org!chukran
  3. From: chukran@cactus.org (Rudy E. Chukran)
  4. Subject: Re: Virtual Memory curiosity
  5. Message-ID: <1992Nov19.064654.8005@cactus.org>
  6. Keywords: VM overflow response
  7. Organization: Capital Area Central Texas UNIX Society, Austin, Tx
  8. References: <BxM5C5.Jyw@csn.org> <1992Nov13.034308.8602@oucsace.cs.ohiou.edu> <BxnyG7.4Hv@news.cso.uiuc.edu>
  9. Distribution: usa
  10. Date: Thu, 19 Nov 1992 06:46:54 GMT
  11. Lines: 21
  12.  
  13. In article <BxnyG7.4Hv@news.cso.uiuc.edu> shair@vnet.ibm.com writes:
  14. >Good idea, but not for AIX.  Don't think AIX ever swaps the read-only stuff
  15. >out in the first place.
  16. If you only consider readonly persistent text segments, then these are
  17. never paged out because they are never dirtied. They get paged back in
  18. from the filesystem.
  19.  
  20. However, to be complete, consider the shared text segment. The shared text
  21. segment consists of many sections mapped readonly from many shared objects
  22. in the filesystem. But, these are mapped into a working segment, and therefore
  23. the associated pages are paged to page space. So these pages are paged out,
  24. even though they are readonly.
  25.  
  26. They are paged out at least once and consume page space pages. The part that
  27. I dont know for sure is if they are ever paged out a second time?
  28. My understanding is that a page is paged out only if it is dirty. If it
  29. is clean, then it is simple replaced. This holds for any non dirty page, 
  30. regardless of whether is is readonly or writtable.
  31.  
  32. Any corroboration from the VMM folks? Is Scott listening?
  33.  
  34.