Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757371AbaKUDnv (ORCPT ); Thu, 20 Nov 2014 22:43:51 -0500 Received: from lgeamrelo02.lge.com ([156.147.1.126]:43731 "EHLO lgeamrelo02.lge.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757014AbaKUDnu (ORCPT ); Thu, 20 Nov 2014 22:43:50 -0500 X-Original-SENDERIP: 10.177.220.156 X-Original-MAILFROM: minchan@kernel.org Date: Fri, 21 Nov 2014 12:43:55 +0900 From: Minchan Kim To: Mahendran Ganesh Cc: ngupta@vflare.org, iamjoonsoo.kim@lge.com, linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] mm/zsmalloc: avoid duplicate assignment of prev_class Message-ID: <20141121034355.GA10123@bbox> References: <1416488913-9691-1-git-send-email-opensource.ganesh@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <1416488913-9691-1-git-send-email-opensource.ganesh@gmail.com> 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 On Thu, Nov 20, 2014 at 09:08:33PM +0800, Mahendran Ganesh wrote: > In zs_create_pool(), prev_class is assigned (ZS_SIZE_CLASSES - 1) > times. And the prev_class only references to the previous alloc > size_class. So we do not need unnecessary assignement. > > This patch modifies *prev_class* to *prev_alloc_class*. And the > *prev_alloc_class* will only be assigned when a new size_class > structure is allocated. > > Signed-off-by: Mahendran Ganesh > --- > mm/zsmalloc.c | 9 +++++---- > 1 file changed, 5 insertions(+), 4 deletions(-) > > diff --git a/mm/zsmalloc.c b/mm/zsmalloc.c > index b3b57ef..ac2b396 100644 > --- a/mm/zsmalloc.c > +++ b/mm/zsmalloc.c > @@ -970,7 +970,7 @@ struct zs_pool *zs_create_pool(gfp_t flags) > int size; > int pages_per_zspage; > struct size_class *class; > - struct size_class *prev_class; > + struct size_class *uninitialized_var(prev_alloc_class); https://lkml.org/lkml/2012/10/27/71 In addition, I prefer prev_class. Thanks. -- 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/