Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S265741AbTFSJlh (ORCPT ); Thu, 19 Jun 2003 05:41:37 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S265745AbTFSJlh (ORCPT ); Thu, 19 Jun 2003 05:41:37 -0400 Received: from hermine.idb.hist.no ([158.38.50.15]:6661 "HELO hermine.idb.hist.no") by vger.kernel.org with SMTP id S265741AbTFSJl1 (ORCPT ); Thu, 19 Jun 2003 05:41:27 -0400 Message-ID: <3EF189D2.6080207@aitel.hist.no> Date: Thu, 19 Jun 2003 12:00:50 +0200 From: Helge Hafting Organization: AITeL, HiST User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.0) Gecko/20020623 Debian/1.0.0-0.woody.1 X-Accept-Language: no, en MIME-Version: 1.0 To: "H. Peter Anvin" CC: linux-kernel@vger.kernel.org Subject: Re: How do I make this thing stop laging? Reboot? Sounds like Windows! References: <200306172030230870.01C9900F@smtp.comcast.net> <3EF0214A.3000103@aitel.hist.no> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1459 Lines: 40 H. Peter Anvin wrote: [...] >>Whenever they quit one big app to run another big one, >>everything is pulled in from swap before the next >>big app start. Then it starts, and push everything out >>again. The current system lets you quit one app, >>the stuff in swap remains there until someone actually use it, >>and lots of free memory remain in case it is needed. >> >>The "intelligent" thing is to leave stuff in swap until >>some app needs it, and pull it in then. Perhaps with >>some read-ahead/clustering to minimize io load. >> > > > This is why you pull things in from swap, but keep tabs on the fact > that it's clean against swap and therefore can be culled at will if > you don't need it. In other words -- it's present *both* in swap and > RAM. Good point. The question is still what to pull in. Stuff in swap is one option. It has been used before, and might be needed again. Contents of memory mapped files (executables and others) are another. We can't know what we will need next, but at least the already opened files ought to be as likely as swap. Pulling other files into cache is a third option. Going for open files (readahead) or recently used ones might be smart. Helge Hafting - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/