From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-it0-f69.google.com (mail-it0-f69.google.com [209.85.214.69]) by kanga.kvack.org (Postfix) with ESMTP id 56C236B0033 for ; Wed, 10 Jan 2018 00:53:46 -0500 (EST) Received: by mail-it0-f69.google.com with SMTP id r196so13505675itc.4 for ; Tue, 09 Jan 2018 21:53:46 -0800 (PST) Received: from mail-sor-f41.google.com (mail-sor-f41.google.com. [209.85.220.41]) by mx.google.com with SMTPS id n3sor10608022iti.75.2018.01.09.21.53.45 for (Google Transport Security); Tue, 09 Jan 2018 21:53:45 -0800 (PST) Date: Wed, 10 Jan 2018 14:53:38 +0900 From: Minchan Kim Subject: Re: [PATCH] zsmalloc: use U suffix for negative literals being shifted Message-ID: <20180110055338.h3cs5hw7mzsdtcad@eng-minchan1.roam.corp.google.com> References: <1514082821-24256-1-git-send-email-nick.desaulniers@gmail.com> 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: Nick Desaulniers Cc: Andy Shevchenko , Nitin Gupta , Sergey Senozhatsky , linux-mm , "linux-kernel@vger.kernel.org" Hi Nick, On Mon, Jan 08, 2018 at 08:35:19PM -0800, Nick Desaulniers wrote: > On Sun, Jan 7, 2018 at 7:04 AM, Minchan Kim wrote: > > Sorry for the delay. I have missed this until now. ;-( > > No worries, figured patches would need a post holiday bump for review. > > > > > On Sun, Dec 24, 2017 at 11:33 AM, Nick Desaulniers > > wrote: > >> - link->next = -1 << OBJ_TAG_BITS; > >> + link->next = -1U << OBJ_TAG_BITS; > > > > -1UL? > > Oops, good catch. > > > Please, resend it with including Andrew Morton > > who merges zsmalloc patch into his tree. > > Will do. > > On Sun, Jan 7, 2018 at 3:02 PM, Andy Shevchenko > wrote: > > Oh, boy, shouldn't be rather GENMASK() / GENMASK_ULL() in a way how > > Thanks for the suggestion. `GENMASK(BITS_PER_LONG - 1, OBJ_TAG_BITS);` > is equivalent. Whether that is more readable, I'll wait for Minchan > to decide. If that's preferred, I'll make sure to credit you with the > Suggested-By tag in the commit message. I don't see any benefit with GENMASK in our usecase. If it's not a good justfication, I'd like to use just -1UL which would be more readable without effort to understand new API. Thanks. -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org