* Re: new kmod.c - debuggers and testers needed [not found] <199804080001.RAA23780@sun4.apsoft.com> @ 1998-04-14 18:02 ` Rik van Riel 1998-04-14 21:27 ` Perry Harrington 1998-04-20 22:00 ` Stephen C. Tweedie 0 siblings, 2 replies; 5+ messages in thread From: Rik van Riel @ 1998-04-14 18:02 UTC (permalink / raw) To: Perry Harrington; +Cc: linux-kernel, linux-mm On Tue, 7 Apr 1998, Perry Harrington wrote: > Threads > are useful in their appropriate context, and kswapd, and kmod would benefit > from them. Hmm, maybe it would be useful for kswapd and bdflush to fork() off threads to do the actual disk I/O, so the main thread won't be blocked and paused... This could remove some bottlenecks. Rik. +-------------------------------------------+--------------------------+ | Linux: - LinuxHQ MM-patches page | Scouting webmaster | | - kswapd ask-him & complain-to guy | Vries cubscout leader | | http://www.fys.ruu.nl/~riel/ | <H.H.vanRiel@fys.ruu.nl> | +-------------------------------------------+--------------------------+ ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: new kmod.c - debuggers and testers needed 1998-04-14 18:02 ` new kmod.c - debuggers and testers needed Rik van Riel @ 1998-04-14 21:27 ` Perry Harrington 1998-04-14 22:58 ` Kswapd future (was: Re: new kmod.c - debuggers and testers needed) Rik van Riel 1998-04-14 23:13 ` new kmod.c - debuggers and testers needed Benjamin C.R. LaHaise 1998-04-20 22:00 ` Stephen C. Tweedie 1 sibling, 2 replies; 5+ messages in thread From: Perry Harrington @ 1998-04-14 21:27 UTC (permalink / raw) To: H.H.vanRiel; +Cc: linux-kernel, linux-mm > > On Tue, 7 Apr 1998, Perry Harrington wrote: > > > Threads > > are useful in their appropriate context, and kswapd, and kmod would benefit > > from them. > > Hmm, maybe it would be useful for kswapd and bdflush to fork() > off threads to do the actual disk I/O, so the main thread won't > be blocked and paused... This could remove some bottlenecks. I was thinking that kswapd could use some of it's spare time to do an LRU paging scan, consolidate free space, and possibly do remapping of process memory spaces to make them more efficient (map pages to contiguous chunks of memory and swap). > > Rik. --Perry -- Perry Harrington Linux rules all OSes. APSoft () email: perry@apsoft.com Think Blue. /\ ^ permalink raw reply [flat|nested] 5+ messages in thread
* Kswapd future (was: Re: new kmod.c - debuggers and testers needed) 1998-04-14 21:27 ` Perry Harrington @ 1998-04-14 22:58 ` Rik van Riel 1998-04-14 23:13 ` new kmod.c - debuggers and testers needed Benjamin C.R. LaHaise 1 sibling, 0 replies; 5+ messages in thread From: Rik van Riel @ 1998-04-14 22:58 UTC (permalink / raw) To: Perry Harrington; +Cc: linux-kernel, linux-mm On Tue, 14 Apr 1998, Perry Harrington wrote: > > On Tue, 7 Apr 1998, Perry Harrington wrote: > > > > > Threads > > > are useful in their appropriate context, and kswapd, and kmod would benefit > > > from them. > > > > Hmm, maybe it would be useful for kswapd and bdflush to fork() > > off threads to do the actual disk I/O, so the main thread won't > > be blocked and paused... This could remove some bottlenecks. > > I was thinking that kswapd could use some of it's spare time to do an LRU > paging scan, consolidate free space, and possibly do remapping of process > memory spaces to make them more efficient (map pages to contiguous chunks > of memory and swap). Unfortunately, kswapd doesn't have such a thing as 'spare time'. It is a kernel daemon that does what's neccessary, but we want to keep it's CPU/IO footprint absolutely minimal since all other applications are more important... Rik. +-------------------------------------------+--------------------------+ | Linux: - LinuxHQ MM-patches page | Scouting webmaster | | - kswapd ask-him & complain-to guy | Vries cubscout leader | | http://www.fys.ruu.nl/~riel/ | <H.H.vanRiel@fys.ruu.nl> | +-------------------------------------------+--------------------------+ ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: new kmod.c - debuggers and testers needed 1998-04-14 21:27 ` Perry Harrington 1998-04-14 22:58 ` Kswapd future (was: Re: new kmod.c - debuggers and testers needed) Rik van Riel @ 1998-04-14 23:13 ` Benjamin C.R. LaHaise 1 sibling, 0 replies; 5+ messages in thread From: Benjamin C.R. LaHaise @ 1998-04-14 23:13 UTC (permalink / raw) To: Perry Harrington; +Cc: H.H.vanRiel, linux-kernel, linux-mm On Tue, 14 Apr 1998, Perry Harrington wrote: ... > > Hmm, maybe it would be useful for kswapd and bdflush to fork() > > off threads to do the actual disk I/O, so the main thread won't > > be blocked and paused... This could remove some bottlenecks. It's not bottlenecks so much as it is the need to do some things speculatively, but what I have in mind is too much to do for now. > I was thinking that kswapd could use some of it's spare time to do an LRU > paging scan, consolidate free space, and possibly do remapping of process > memory spaces to make them more efficient (map pages to contiguous chunks > of memory and swap). Two techniques that I think should help are: 1. make it easier to free contiguous pages (that's done and working for me) 2. change the allocation strategy to make our common cases not fragment memory all over the place - ie switch to a zone allocator for pages It's far too late in 2.1 for any truely radical changes to combat fragmention to go into the mainstream kernel, hence we need to stick to tweaking the behaviour of our existing code. Perhaps get_free_page shouldn't break any of the higher memory order allocations for GFP_USER requests when such actions will leave insufficient high-order pages around. Couple that with kswapd now checking the available memory orders and normal systems shouldn't suffer swapout attacks (or at least those caused by a lack of free high-order page). -ben ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: new kmod.c - debuggers and testers needed 1998-04-14 18:02 ` new kmod.c - debuggers and testers needed Rik van Riel 1998-04-14 21:27 ` Perry Harrington @ 1998-04-20 22:00 ` Stephen C. Tweedie 1 sibling, 0 replies; 5+ messages in thread From: Stephen C. Tweedie @ 1998-04-20 22:00 UTC (permalink / raw) To: H.H.vanRiel; +Cc: Perry Harrington, linux-kernel, linux-mm Hi, On Tue, 14 Apr 1998 20:02:09 +0200 (MET DST), Rik van Riel <H.H.vanRiel@fys.ruu.nl> said: > On Tue, 7 Apr 1998, Perry Harrington wrote: >> Threads >> are useful in their appropriate context, and kswapd, and kmod would benefit >> from them. > Hmm, maybe it would be useful for kswapd and bdflush to fork() > off threads to do the actual disk I/O, so the main thread won't > be blocked and paused... This could remove some bottlenecks. bdflush does nothing except IO, so there's no real reason to twin-thread it. kswapd does indeed benefit from a separate IO thread, and I've already got patches which implement a kswiod for IO and a kswapd for page scanning. I'll post them once I've got them ready against the latest kernel: my current patches for this code are pretty old. --Stephen ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~1998-04-20 22:14 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <199804080001.RAA23780@sun4.apsoft.com>
1998-04-14 18:02 ` new kmod.c - debuggers and testers needed Rik van Riel
1998-04-14 21:27 ` Perry Harrington
1998-04-14 22:58 ` Kswapd future (was: Re: new kmod.c - debuggers and testers needed) Rik van Riel
1998-04-14 23:13 ` new kmod.c - debuggers and testers needed Benjamin C.R. LaHaise
1998-04-20 22:00 ` Stephen C. Tweedie
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox