From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 327DE19E98B; Mon, 14 Oct 2024 15:29:29 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728919770; cv=none; b=fFcSSbI1uFX373oyaq4+zmaVb9NH5zm1oA8OrsEfPFGfv7CBrlisvAkaOLyRhZ919rYWdIVaqK134eLCxW7QUmEClUSwDwDS4/K0oijYsKCkDBLrNjpqcvbEbr7pZqZ/jVIKuP15SIVvFshLarc250x1g4Zg4tXkRVWfw71hDOM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728919770; c=relaxed/simple; bh=a4rCDzt2MRuusoZjrfuUd6MzMN/vGKAWBrkKKkDKG6Q=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=YQZ3vrwfEE1Tj4lGZxyOzfL1xOjcp+0nxSFzXwRxMPIAmUziJXfparOMPFAnOYKwPsj56ocuQ+ybikfNtpoLO3yhHlxwFEEDUpbc7wc4hIcZD/0u9iQ9H+PiKB6wFt9SYWr3JVtDJpzgwsLp4ohF7cmHxv0q6gE4g42ZOw+cznQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=xDia543H; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="xDia543H" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 369F9C4CEC3; Mon, 14 Oct 2024 15:29:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1728919769; bh=a4rCDzt2MRuusoZjrfuUd6MzMN/vGKAWBrkKKkDKG6Q=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=xDia543Hp6yEcgnPXVM1lFv3mL84733N2S9g2OghbN6lc5Yvg2MX6zMIVcBb2JMDq n2hy/OVWzHCB/C7EFDAB34sAtaUIcCk8soAZ+kwawuPuXeJW5FyswdbJHeN4BOkmIn Pe0v0nQQVHUzN8XQxqQDL3xDDbT0KD7Q5265pH1A= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, kernel test robot , "Masami Hiramatsu (Google)" , Sasha Levin Subject: [PATCH 6.1 671/798] bootconfig: Fix the kerneldoc of _xbc_exit() Date: Mon, 14 Oct 2024 16:20:25 +0200 Message-ID: <20241014141244.427239171@linuxfoundation.org> X-Mailer: git-send-email 2.47.0 In-Reply-To: <20241014141217.941104064@linuxfoundation.org> References: <20241014141217.941104064@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Masami Hiramatsu (Google) [ Upstream commit 298b871cd55a607037ac8af0011b9fdeb54c1e65 ] Fix the kerneldoc of _xbc_exit() which is updated to have an @early argument and the function name is changed. Link: https://lore.kernel.org/all/171321744474.599864.13532445969528690358.stgit@devnote2/ Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202404150036.kPJ3HEFA-lkp@intel.com/ Fixes: 89f9a1e876b5 ("bootconfig: use memblock_free_late to free xbc memory to buddy") Signed-off-by: Masami Hiramatsu (Google) Signed-off-by: Sasha Levin --- lib/bootconfig.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/bootconfig.c b/lib/bootconfig.c index 8841554432d5b..97f8911ea339e 100644 --- a/lib/bootconfig.c +++ b/lib/bootconfig.c @@ -901,7 +901,8 @@ static int __init xbc_parse_tree(void) } /** - * xbc_exit() - Clean up all parsed bootconfig + * _xbc_exit() - Clean up all parsed bootconfig + * @early: Set true if this is called before budy system is initialized. * * This clears all data structures of parsed bootconfig on memory. * If you need to reuse xbc_init() with new boot config, you can -- 2.43.0