From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751040AbeBIMew (ORCPT ); Fri, 9 Feb 2018 07:34:52 -0500 Received: from mail-pg0-f67.google.com ([74.125.83.67]:36722 "EHLO mail-pg0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750863AbeBIMeu (ORCPT ); Fri, 9 Feb 2018 07:34:50 -0500 X-Google-Smtp-Source: AH8x226RQyAJ76sf+tHfTiY6vC8uBTtPkQ7s03sobHVLj+xe1uWB83WSjsuxfyBud5qNuSm7hhZ6Rw== Date: Fri, 9 Feb 2018 21:34:46 +0900 From: Sergey Senozhatsky To: Mike Rapoport Cc: Sergey Senozhatsky , Matthew Wilcox , Minchan Kim , Andrew Morton , linux-kernel@vger.kernel.org, linux-mm@kvack.org, Sergey Senozhatsky Subject: Re: [PATCH 1/2] zsmalloc: introduce zs_huge_object() function Message-ID: <20180209123446.GB485@tigerII.localdomain> References: <20180207092919.19696-1-sergey.senozhatsky@gmail.com> <20180207092919.19696-2-sergey.senozhatsky@gmail.com> <20180208163006.GB17354@rapoport-lnx> <20180209025520.GA3423@jagdpanzerIV> <20180209041046.GB23828@bombadil.infradead.org> <20180209053630.GC689@jagdpanzerIV> <20180209111102.GB2044@rapoport-lnx> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180209111102.GB2044@rapoport-lnx> User-Agent: Mutt/1.9.3 (2018-01-21) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On (02/09/18 13:11), Mike Rapoport wrote: [..] > > +/** > > + * zs_huge_object() - Test if a compressed object's size is too big for normal > > + * zspool classes and it will be stored in a huge class. > > Maybe "it should be stored ..."? Agreed. > > + * @sz: Size in bytes of the compressed object. > > + * > > + * The functions checks if the object's size falls into huge_class area. > > + * We must take ZS_HANDLE_SIZE into account and test the actual size we > > ^ %ZS_HANDLE_SIZE Indeed. ``%CONST`` > > + * are going to use up, because zs_malloc() unconditionally adds the > > I think 's/use up/use/' here Agreed. > > + * handle size before it performs size_class lookup. > > ^ &size_class OK. ``&struct name`` Thanks for reviewing it! -ss