From patchwork Wed Sep 15 13:19:52 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Masami Hiramatsu (Google)" X-Patchwork-Id: 12496245 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=-16.8 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT 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 42D5AC4332F for ; Wed, 15 Sep 2021 13:19:58 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id E7F5B6121F for ; Wed, 15 Sep 2021 13:19:57 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org E7F5B6121F Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=kvack.org Received: by kanga.kvack.org (Postfix) id 8B9E26B0074; Wed, 15 Sep 2021 09:19:57 -0400 (EDT) Received: by kanga.kvack.org (Postfix, from userid 40) id 869656B0075; Wed, 15 Sep 2021 09:19:57 -0400 (EDT) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 757F5900002; Wed, 15 Sep 2021 09:19:57 -0400 (EDT) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0188.hostedemail.com [216.40.44.188]) by kanga.kvack.org (Postfix) with ESMTP id 68F3C6B0074 for ; Wed, 15 Sep 2021 09:19:57 -0400 (EDT) Received: from smtpin36.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay04.hostedemail.com (Postfix) with ESMTP id 36F572C59C for ; Wed, 15 Sep 2021 13:19:57 +0000 (UTC) X-FDA: 78589865634.36.AD53B9B Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by imf08.hostedemail.com (Postfix) with ESMTP id F241D30000B5 for ; Wed, 15 Sep 2021 13:19:56 +0000 (UTC) Received: by mail.kernel.org (Postfix) with ESMTPSA id E0F5A61251; Wed, 15 Sep 2021 13:19:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1631711996; bh=UpxfRZK8T2RDPLPb11HxaKpLoTbgunj3UUurBaCsjc0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=V5T0gQuAHHfsocNubOi/llKfWcL+tZueU/clHXUh+2LvVwTuhEMF2F/cFksZWS+lP qyvw+/QFvftdKNxZQfXBYndCXrp8UTLLlgtYYmW2CP1wjNm13z0ZGfp6s92bMACx9D nC9ryzggH3XN+9ga1eHG41AYJOIA2mcs2Z4HQNf5VoRCUpahbKHSb0J94IaDYj+Fp9 RUpmg/pLJ/I0lPeObgHV9o0o9Gt1mEtVZi+Q89uqb8WxRZLuPjWv15VGG4LnrrYHqf DQFXXa1Fe11KU8r+AKypfGS5NonZezvAkW7c4ZYIjYNbJVZ+6wSHeFPapJWP+xRAfm MyKY+G3nsoHXQ== From: Masami Hiramatsu To: Steven Rostedt Cc: Linus Torvalds , Mike Rapoport , Andrew Morton , LKML , Ingo Molnar , Masami Hiramatsu , Linux-MM , Vlastimil Babka Subject: [PATCH v3 3/3] bootconfig: Free xbc_data in xbc_destroy_all() Date: Wed, 15 Sep 2021 22:19:52 +0900 Message-Id: <163171199244.590070.6356174550728998874.stgit@devnote2> X-Mailer: git-send-email 2.25.1 In-Reply-To: <163171196689.590070.15063104707696447188.stgit@devnote2> References: <163171196689.590070.15063104707696447188.stgit@devnote2> User-Agent: StGit/0.19 MIME-Version: 1.0 Authentication-Results: imf08.hostedemail.com; dkim=pass header.d=kernel.org header.s=k20201202 header.b=V5T0gQuA; spf=pass (imf08.hostedemail.com: domain of mhiramat@kernel.org designates 198.145.29.99 as permitted sender) smtp.mailfrom=mhiramat@kernel.org; dmarc=pass (policy=none) header.from=kernel.org X-Rspamd-Server: rspam06 X-Rspamd-Queue-Id: F241D30000B5 X-Stat-Signature: c8qpuwyqsyza3jhf9bnuzhimxrz1xfee X-HE-Tag: 1631711996-571686 X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: Free xbc_data memory in xbc_destroy_all() with other data. Note that this changes the ownership of the passed bootconfig data. Signed-off-by: Masami Hiramatsu --- lib/bootconfig.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/bootconfig.c b/lib/bootconfig.c index 5ae248b29373..2ba7d945adc9 100644 --- a/lib/bootconfig.c +++ b/lib/bootconfig.c @@ -789,6 +789,7 @@ static int __init xbc_verify_tree(void) */ void __init xbc_destroy_all(void) { + memblock_free_ptr(xbc_data, xbc_data_size); xbc_data = NULL; xbc_data_size = 0; xbc_node_num = 0; @@ -810,6 +811,8 @@ void __init xbc_destroy_all(void) * In error cases, @emsg will be updated with an error message and * @epos will be updated with the error position which is the byte offset * of @buf. If the error is not a parser error, @epos will be -1. + * Note that the @buf ownership is transferred, so it will be freed + * in xbc_destroy_all(). */ int __init xbc_init(char *buf, const char **emsg, int *epos) {