Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756685AbeAIEfW (ORCPT + 1 other); Mon, 8 Jan 2018 23:35:22 -0500 Received: from mail-oi0-f66.google.com ([209.85.218.66]:41121 "EHLO mail-oi0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755653AbeAIEfU (ORCPT ); Mon, 8 Jan 2018 23:35:20 -0500 X-Google-Smtp-Source: ACJfBotAblBlU1oxZa6BzHzcyB9ZlG1X+gO7xSTO9VTMyqLgOTHVJqjhKDie1v9UO/fTR2L23TAfPl5+zpc/k9E7bng= MIME-Version: 1.0 In-Reply-To: References: <1514082821-24256-1-git-send-email-nick.desaulniers@gmail.com> From: Nick Desaulniers Date: Mon, 8 Jan 2018 20:35:19 -0800 Message-ID: Subject: Re: [PATCH] zsmalloc: use U suffix for negative literals being shifted To: Andy Shevchenko , Minchan Kim Cc: Nitin Gupta , Sergey Senozhatsky , linux-mm , "linux-kernel@vger.kernel.org" Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: 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.