> From: Seth Jennings [mailto:sjenning@xxxxxxxxxxxxxxxxxx] > Sent: Friday, February 22, 2013 1:04 PM > To: Joonsoo Kim > Subject: Re: [PATCHv5 1/8] zsmalloc: add to mm/ > > On 02/22/2013 03:24 AM, Joonsoo Kim wrote: > > > > It's my quick thought. So there is no concrete idea. > > As Seth said, with a FULL list, zsmalloc always access all zspage. > > So, if we want to know what pages are for zsmalloc, we can know it. > > The EMPTY list can be used for pool of zsmalloc itself. With it, we don't > > need to free zspage directly, we can keep zspages, so can reduce > > alloc/free overhead. But, I'm not sure whether it is useful. > > I think it's a good idea. zswap actually does this "keeping some free > pages around for later allocations" outside zsmalloc in a mempool that > zswap manages. Minchan once mentioned bringing that inside zsmalloc > and this would be a way we could do it. I think it's a very bad idea. If I understand, the suggestion will hide away some quantity (possibly a very large quantity) of pages for the sole purpose of zswap, in case zswap gets around to using them sometime in the future. In the meantime, those pages are not available for use by any other kernel subsystems or by userland processes. An idle page is a wasted page. While you might defend the mempool use for a handful of pages, frontswap writes/reads thousands of pages in a bursty way, and then can go idle for a very long time. This may not be readily apparent with artificially-created memory pressure from kernbench with -jN (high N). Leaving thousands of pages in zswap's personal free list may cause memory pressure that would otherwise never have existed. > Just want to be clear that I'd be in favor of looking at this after > the merge. I disagree... I think this is exactly the kind of fundamental MM interaction that should be well understood and resolved BEFORE anything gets merged. _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/devel