From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Wilcox Subject: Re: [RFC PATCH 0/5] kmalloc-reclaimable caches Date: Thu, 24 May 2018 11:48:46 -0700 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 Return-path: Content-Disposition: inline In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org 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 List-Id: linux-api@vger.kernel.org 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!