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 E76B01FB7 for ; Fri, 25 Mar 2022 01:09:20 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B0303C340EC; Fri, 25 Mar 2022 01:09:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1648170560; bh=oMks0NwgJ+vcKBdS+9v/+XKkQeSFmsxtBamyoI9531E=; h=Date:To:From:In-Reply-To:Subject:From; b=fXO9/WHIk5cPKi/zv6KC0e4CLYe84b3I3p8AdwoxIIDlJiIWSPilj7ixRVqhHrs5x tmaD2Uu09hGTfhQPFajyP6TSQk0JQ84l8XfDw53h2LOZMNn9cKAf8cxqBhL9pYazlO ZjGknx29monTZaFE3uxDemk0+Dvhp0Lp+wF1/iN4= Date: Thu, 24 Mar 2022 18:09:20 -0700 To: zhangyinan2019@email.szu.edu.cn,weizhenliang@huawei.com,sfr@canb.auug.org.au,caoyixuan2019@email.szu.edu.cn,yejiajian2018@email.szu.edu.cn,akpm@linux-foundation.org,patches@lists.linux.dev,linux-mm@kvack.org,mm-commits@vger.kernel.org,torvalds@linux-foundation.org,akpm@linux-foundation.org From: Andrew Morton In-Reply-To: <20220324180758.96b1ac7e17675d6bc474485e@linux-foundation.org> Subject: [patch 015/114] tools/vm/page_owner_sort.c: fix comments Message-Id: <20220325010920.B0303C340EC@smtp.kernel.org> Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: From: Jiajian Ye Subject: tools/vm/page_owner_sort.c: fix comments Two adjustments are made: 1. Correct a grammatical error: replace the "what" in "Do the job what you want to debug" with "that". 2. Replace "has not been" with "has been" in the description of the -f option: According to Commit b1c9ba071e7d ("tools/vm/page_owner_sort.c: fix the instructions for use"), the description of the "-f" option is "Filter out the information of blocks whose memory has been released." Link: https://lkml.kernel.org/r/20220301151438.166118-1-yejiajian2018@email.szu.edu.cn Signed-off-by: Jiajian Ye Cc: Stephen Rothwell Cc: Yinan Zhang Cc: Yixuan Cao Cc: Zhenliang Wei Signed-off-by: Andrew Morton --- Documentation/vm/page_owner.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/Documentation/vm/page_owner.rst~tools-vm-page_owner_sortc-fix-comments +++ a/Documentation/vm/page_owner.rst @@ -78,7 +78,7 @@ Usage 2) Enable page owner: add "page_owner=on" to boot cmdline. -3) Do the job what you want to debug +3) Do the job that you want to debug. 4) Analyze information from page owner:: @@ -126,4 +126,4 @@ Usage -c Cull by comparing stacktrace instead of total block. Filter: - -f Filter out the information of blocks whose memory has not been released. + -f Filter out the information of blocks whose memory has been released. _