From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pl0-f70.google.com (mail-pl0-f70.google.com [209.85.160.70]) by kanga.kvack.org (Postfix) with ESMTP id 6DECB6B0006 for ; Thu, 24 May 2018 14:48:52 -0400 (EDT) Received: by mail-pl0-f70.google.com with SMTP id t17-v6so82884ply.13 for ; Thu, 24 May 2018 11:48:52 -0700 (PDT) Received: from bombadil.infradead.org (bombadil.infradead.org. [2607:7c80:54:e::133]) by mx.google.com with ESMTPS id k14-v6si1762259pgn.99.2018.05.24.11.48.50 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Thu, 24 May 2018 11:48:50 -0700 (PDT) Date: Thu, 24 May 2018 11:48:46 -0700 From: Matthew Wilcox Subject: Re: [RFC PATCH 0/5] kmalloc-reclaimable caches Message-ID: <20180524184846.GA5459@bombadil.infradead.org> References: <20180524110011.1940-1-vbabka@suse.cz> <20180524114350.GA10323@bombadil.infradead.org> <0944e1ed-60fe-36ce-ea06-936b3f595d5f@infradead.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: owner-linux-mm@kvack.org List-ID: To: Randy Dunlap Cc: Vlastimil Babka , linux-mm@kvack.org, Roman Gushchin , Michal Hocko , Johannes Weiner , linux-kernel@vger.kernel.org, linux-api@vger.kernel.org, Christoph Lameter , Pekka Enberg , David Rientjes , Joonsoo Kim , Mel Gorman , Vijayanand Jitta On Thu, May 24, 2018 at 11:40:59AM -0700, Randy Dunlap wrote: > >> while (size > 1024) { > > I would use (size >= 1024) > so that 1M is printed instead of 1024K. Yes; that's what I meant to type. Thanks!