From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.9 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH, MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 56ED4C4338F for ; Thu, 29 Jul 2021 17:50:05 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2B5A660F46 for ; Thu, 29 Jul 2021 17:50:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229733AbhG2RuG (ORCPT ); Thu, 29 Jul 2021 13:50:06 -0400 Received: from mail.kernel.org ([198.145.29.99]:53376 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229485AbhG2RuF (ORCPT ); Thu, 29 Jul 2021 13:50:05 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id E52086069E; Thu, 29 Jul 2021 17:50:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1627581001; bh=Y9OGgBXFU2G/7mHocyKVDlKZlE2rzm/VfDZ+H+zhGPk=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=N4/xLEXF9qxW7yGhZphmX4slJQYzCm4alCBco+rxJ/9yJDk/fKsR0tD3NeVRg8Mxg APi3yiAyQ38dHH4OS2LBz8dVxjP0uZQsRCdPx7QJ2KKmaIpqDf6/Ad7hJSG3490XsF L/50HxUSWY9x5HW+i/PQcmA3Ck5zjZwAKhe92/7c= Date: Thu, 29 Jul 2021 10:50:00 -0700 From: Andrew Morton To: Barry Song Cc: , , , , , , , , , , , , , , , , , , , Subject: Re: [PATCH v8 0/5] use bin_attribute to break the size limitation of cpumap ABI Message-Id: <20210729105000.857e7225f0a73d6af98db116@linux-foundation.org> In-Reply-To: <20210729054208.1800-1-song.bao.hua@hisilicon.com> References: <20210729054208.1800-1-song.bao.hua@hisilicon.com> X-Mailer: Sylpheed 3.5.1 (GTK+ 2.24.32; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, 29 Jul 2021 17:42:03 +1200 Barry Song wrote: > drivers/base/node.c | 51 +++++++++----- > drivers/base/topology.c | 115 ++++++++++++++++-------------- > include/linux/bitmap.h | 2 + > include/linux/cpumask.h | 63 +++++++++++++++++ > lib/bitmap.c | 96 +++++++++++++++++++++++++ > lib/test_bitmap.c | 150 ++++++++++++++++++++++++++++++++++++++++ > 6 files changed, 407 insertions(+), 70 deletions(-) I'm assuming this is more a gregkh thing than an akpm thing?