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 kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0A070C433F5 for ; Mon, 9 May 2022 10:15:46 +0000 (UTC) Received: by kanga.kvack.org (Postfix) id 8965F6B0071; Mon, 9 May 2022 06:15:46 -0400 (EDT) Received: by kanga.kvack.org (Postfix, from userid 40) id 846DE6B0073; Mon, 9 May 2022 06:15:46 -0400 (EDT) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 736216B0074; Mon, 9 May 2022 06:15:46 -0400 (EDT) X-Delivered-To: linux-mm@kvack.org Received: from relay.hostedemail.com (smtprelay0011.hostedemail.com [216.40.44.11]) by kanga.kvack.org (Postfix) with ESMTP id 6039F6B0071 for ; Mon, 9 May 2022 06:15:46 -0400 (EDT) Received: from smtpin27.hostedemail.com (a10.router.float.18 [10.200.18.1]) by unirelay09.hostedemail.com (Postfix) with ESMTP id 404CD307F4 for ; Mon, 9 May 2022 10:15:46 +0000 (UTC) X-FDA: 79445798292.27.C2B11A0 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by imf27.hostedemail.com (Postfix) with ESMTP id 6D54A40097 for ; Mon, 9 May 2022 10:15:43 +0000 (UTC) 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 AD1D0B810B6; Mon, 9 May 2022 10:15:43 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 55607C385A8; Mon, 9 May 2022 10:15:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1652091342; bh=sxUAcaLLSaqfGpbMutvCvdhAXxJ4xVgqlea0hGl2N/s=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=lF1n9cNupiZV2/RLcE7nDILUkQhSJRmxMAUfJkQ/3qwJApfB67NfGjxqkLCycdIQp eUCCr1JihRwQcZCsMQtMwB6IhkdXgwWESy8evcTcjym6MUkAydKkJ3PQDkVdLd93Si LLAJRWR+qcxzAWO0zE6jvpLsXghuI5rM2r31PW+yJ99zq2NcAYGYRt1CqHH4DlI1gM 7XBnl+xlhAKYbeQRqj2GZnQ63nRne2DAfGWEVqLQl4LYjSWCvygzdwrdr4tq0KcPeN FglTk7c6PXJvhnb9+vcht95w4eVyWseydSkyBFkPPlUnWinAVLjttWXDuGNlHHmS3T 7hDBmtEYnziwg== Date: Mon, 9 May 2022 13:15:35 +0300 From: Mike Rapoport To: Rebecca Mckeever Cc: outreachy@lists.linux.dev, linux-mm@kvack.org, linux-kernel@vger.kernel.org, David Hildenbrand Subject: Re: [PATCH v4 0/5] memblock tests: update style of comments Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Authentication-Results: imf27.hostedemail.com; dkim=pass header.d=kernel.org header.s=k20201202 header.b=lF1n9cNu; dmarc=pass (policy=none) header.from=kernel.org; spf=pass (imf27.hostedemail.com: domain of rppt@kernel.org designates 145.40.68.75 as permitted sender) smtp.mailfrom=rppt@kernel.org X-Rspamd-Server: rspam06 X-Rspamd-Queue-Id: 6D54A40097 X-Rspam-User: X-Stat-Signature: xp9sd3bmeof5aor5yfmyxztc6n8kss1z X-HE-Tag: 1652091343-115408 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: On Sat, Apr 30, 2022 at 05:49:35PM -0500, Rebecca Mckeever wrote: > These patches update the style of comments for memblock_add_*(), > memblock_reserve_*(), memblock_remove_*(), and memblock_free_*() > functions to match the style of comments in tests/alloc_*.c and > remove extra spaces in those comments to conform to Linux kernel > coding style. This completes an item from the TODO list. > > Rebecca Mckeever (5): > memblock tests: update style of comments for memblock_add_*() > functions > memblock tests: update style of comments for memblock_reserve_*() > functions > memblock tests: update style of comments for memblock_remove_*() > functions > memblock tests: update style of comments for memblock_free_*() > functions > memblock tests: remove completed TODO item > > tools/testing/memblock/TODO | 3 - > tools/testing/memblock/tests/basic_api.c | 392 ++++++++++++++++------- > 2 files changed, 278 insertions(+), 117 deletions(-) Applied, thanks! -- Sincerely yours, Mike.