From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751482AbbGJETF (ORCPT ); Fri, 10 Jul 2015 00:19:05 -0400 Received: from mail-pa0-f43.google.com ([209.85.220.43]:36076 "EHLO mail-pa0-f43.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750839AbbGJES6 (ORCPT ); Fri, 10 Jul 2015 00:18:58 -0400 Date: Fri, 10 Jul 2015 13:19:29 +0900 From: Sergey Senozhatsky To: Minchan Kim Cc: Sergey Senozhatsky , Andrew Morton , Sergey Senozhatsky , Nitin Gupta , linux-kernel@vger.kernel.org, linux-mm@kvack.org Subject: Re: [PATCH] zsmalloc: consider ZS_ALMOST_FULL as migrate source Message-ID: <20150710041929.GC692@swordfish> References: <1436491929-6617-1-git-send-email-minchan@kernel.org> <20150710015828.GA692@swordfish> <20150710022910.GA18266@blaptop> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150710022910.GA18266@blaptop> User-Agent: Mutt/1.5.23+89 (0255b37be491) (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On (07/10/15 11:29), Minchan Kim wrote: > Good question. > > My worry was failure of order-0 page allocation in zram-swap path > when memory presssure is really heavy but I didn't insist to you > from sometime. The reason I changed my mind was > > 1. It's almost dead system if there is no order-0 page > 2. If old might be working well, it's not our design, just luck. I mean I find your argument that some level of fragmentation can be of use to be valid, to some degree. hm... by the way, unsigned long zs_malloc(struct zs_pool *pool, size_t size) { ... size += ZS_HANDLE_SIZE; class = pool->size_class[get_size_class_index(size)]; ... if (!first_page) { spin_unlock(&class->lock); first_page = alloc_zspage(class, pool->flags); if (unlikely(!first_page)) { free_handle(pool, handle); return 0; } ... I'm thinking now, does it make sense to try harder here? if we failed to alloc_zspage(), then may be we can try any of unused objects from a 'upper' (larger/next) class? there might be a plenty of them. -ss