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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6A576C25B4E for ; Tue, 24 Jan 2023 05:45:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232864AbjAXFpv (ORCPT ); Tue, 24 Jan 2023 00:45:51 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41120 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232856AbjAXFps (ORCPT ); Tue, 24 Jan 2023 00:45:48 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id DB2ED3BDB9; Mon, 23 Jan 2023 21:45:05 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id CC5B6B81061; Tue, 24 Jan 2023 05:45:03 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4D010C4339E; Tue, 24 Jan 2023 05:45:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1674539102; bh=ScyvuQegV5fO5JfKO+uV9dbs09GznxoP8p2RacsRoQ8=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=aieViE0VmzSNNzQQLemLOpdylwN3jL7h9CPVewNebScLHhnL6HbDltpq7BhXWJJvL LXfTknZc9hhbCzA5B46rD3D5TN51FTYw+ytSFgSdInkHjI2g8VtiYcPbPTXhm+OxHU DD5mlN7P8/CCSHzUj5k4rZYLrpbTCxIxHyVbvSs2YdwMidEkmVZimrZgISpBkSCrfn 4ilHh3eV0pBTOe0dZSE2a09NlORVhdAvHRneo1OrNwNlv3MqPNTdhGj1dxNpvyMr4v 11v+OCkvfU2AAAxr8lg7mwMHgpY1AgeGNiYA8FQT2SWO6eKTvIkQmM4kaOGL37Vse3 P0x5P4osYN0Yw== Date: Tue, 24 Jan 2023 14:44:57 +0900 From: Masami Hiramatsu (Google) To: Souradeep Chowdhury Cc: , Bjorn Andersson , , , Sai Prakash Ranjan , Sibi Sankar , Rajendra Nayak Subject: Re: [PATCH V1] bootconfig: Increase max nodes of bootconfig from 1024 to 8192 for DCC support Message-Id: <20230124144457.00fb60b872c701d70808215e@kernel.org> In-Reply-To: <1674536682-18404-1-git-send-email-quic_schowdhu@quicinc.com> References: <1674536682-18404-1-git-send-email-quic_schowdhu@quicinc.com> X-Mailer: Sylpheed 3.7.0 (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-arm-msm@vger.kernel.org On Tue, 24 Jan 2023 10:34:42 +0530 Souradeep Chowdhury wrote: > The Data Capture and Compare(DCC) is a debugging tool that uses the bootconfig > for configuring the register values during boot-time. Increase the max nodes > supported by bootconfig to cater to the requirements of the Data Capture and > Compare Driver. Thanks, this looks good to me :) Acked-by: Masami Hiramatsu (Google) > > Signed-off-by: Souradeep Chowdhury > --- > include/linux/bootconfig.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/linux/bootconfig.h b/include/linux/bootconfig.h > index 1611f9d..ca73940 100644 > --- a/include/linux/bootconfig.h > +++ b/include/linux/bootconfig.h > @@ -59,7 +59,7 @@ struct xbc_node { > /* Maximum size of boot config is 32KB - 1 */ > #define XBC_DATA_MAX (XBC_VALUE - 1) > > -#define XBC_NODE_MAX 1024 > +#define XBC_NODE_MAX 8192 > #define XBC_KEYLEN_MAX 256 > #define XBC_DEPTH_MAX 16 > > -- > 2.7.4 > -- Masami Hiramatsu (Google)