Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753010AbaKXHz3 (ORCPT ); Mon, 24 Nov 2014 02:55:29 -0500 Received: from LGEMRELSE7Q.lge.com ([156.147.1.151]:51828 "EHLO lgemrelse7q.lge.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752696AbaKXHzZ (ORCPT ); Mon, 24 Nov 2014 02:55:25 -0500 X-Original-SENDERIP: 10.177.220.156 X-Original-MAILFROM: minchan@kernel.org Date: Mon, 24 Nov 2014 16:55:37 +0900 From: Minchan Kim To: Ganesh Mahendran Cc: Nitin Gupta , Joonsoo Kim , Linux-MM , linux-kernel Subject: Re: [RFC PATCH] mm/zsmalloc: remove unnecessary check Message-ID: <20141124075537.GB22312@bbox> References: <1416489716-9967-1-git-send-email-opensource.ganesh@gmail.com> <20141121035442.GB10123@bbox> <20141121064849.GA17181@gmail.com> <20141121103232.GA31540@blaptop> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello Ganesh, On Fri, Nov 21, 2014 at 10:56:10PM +0800, Ganesh Mahendran wrote: > Hello Minchan > > 2014-11-21 18:32 GMT+08:00 Minchan Kim : > > On Fri, Nov 21, 2014 at 06:48:49AM +0000, Minchan Kim wrote: > >> On Fri, Nov 21, 2014 at 01:33:26PM +0800, Ganesh Mahendran wrote: > >> > Hello > >> > > >> > 2014-11-21 11:54 GMT+08:00 Minchan Kim : > >> > > On Thu, Nov 20, 2014 at 09:21:56PM +0800, Mahendran Ganesh wrote: > >> > >> ZS_SIZE_CLASSES is calc by: > >> > >> ((ZS_MAX_ALLOC_SIZE - ZS_MIN_ALLOC_SIZE) / ZS_SIZE_CLASS_DELTA + 1) > >> > >> > >> > >> So when i is in [0, ZS_SIZE_CLASSES - 1), the size: > >> > >> size = ZS_MIN_ALLOC_SIZE + i * ZS_SIZE_CLASS_DELTA > >> > >> will not be greater than ZS_MAX_ALLOC_SIZE > >> > >> > >> > >> This patch removes the unnecessary check. > >> > > > >> > > It depends on ZS_MIN_ALLOC_SIZE. > >> > > For example, we would change min to 8 but MAX is still 4096. > >> > > ZS_SIZE_CLASSES is (4096 - 8) / 16 + 1 = 256 so 8 + 255 * 16 = 4088, > >> > > which exceeds the max. > >> > Here, 4088 is less than MAX(4096). > >> > > >> > ZS_SIZE_CLASSES = (MAX - MIN) / Delta + 1 > >> > So, I think the value of > >> > MIN + (ZS_SIZE_CLASSES - 1) * Delta = > >> > MIN + ((MAX - MIN) / Delta) * Delta = > >> > MAX > >> > will not exceed the MAX > >> > >> You're right. It was complext math for me. > >> I should go back to elementary school. > >> > >> Thanks! > >> > >> Acked-by: Minchan Kim > > > > I catch a nasty cold but above my poor math makes me think more. > > ZS_SIZE_CLASSES is broken. In above my example, current code cannot > > allocate 4096 size class so we should correct ZS_SIZE_CLASSES > > at first. > > > > zs_size_classes = zs_max - zs_min / delta + 1; > > if ((zs_max - zs_min) % delta) > > zs_size_classes += 1; > Yes, you are right. > When the zs_min is less than delta, we can not allocate PAGE_SIZE size class. > > > > > Then, we need to code piece you removed. > > As well, we need to fix below. > > > > - area->vm_buf = (char *)__get_free_page(GFP_KERNEL); > > + area->vm_buf = kmalloc(ZS_MAX_ALLOC_SIZE); > If our purpose is to allocate the max obj size as len of PAGE_SIZE, we > do not need to > change this line. Since the ZS_MAX_ALLOC_SIZE will always be PAGE_SIZE No, please don't assume ZS_MAX_ALLOC_SIZE is PAGE_SIZE forever. Some reason could make buffer larger than PAGE_SIZE. For example, we might put allocator's metadata into each object's head/tail. -- Kind regards, Minchan Kim -- 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/