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 X-Spam-Level: X-Spam-Status: No, score=-15.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_RED 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 090C5C11F68 for ; Thu, 1 Jul 2021 01:53:12 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id EB51161468 for ; Thu, 1 Jul 2021 01:53:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238513AbhGABzl (ORCPT ); Wed, 30 Jun 2021 21:55:41 -0400 Received: from mail.kernel.org ([198.145.29.99]:45374 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238512AbhGABzk (ORCPT ); Wed, 30 Jun 2021 21:55:40 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id A9B9E6147E; Thu, 1 Jul 2021 01:53:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1625104390; bh=P/lhfLrruUR7vtC0Xbkq/dwoe2sxwcgaLGDzRg4CgxY=; h=Date:From:To:Subject:In-Reply-To:From; b=Cd0fRRu+kl6eFlt0Gyt3xHBHsU6Rl541UgzqkbdS7rLlVMs6pFVyBs3bJcbo5w3O9 6lzNpysZ7E2w5AzbHtLOZ75LD4SGebTYYqX0Q+kPuQJfReRN/SYBaF+FQ3PnubaQsF QvNMgpiaujJSl69VK9Wa2KPo/L34t2A/zdZBVa6U= Date: Wed, 30 Jun 2021 18:53:10 -0700 From: Andrew Morton To: 42.hyeyoo@gmail.com, akpm@linux-foundation.org, linux-mm@kvack.org, mm-commits@vger.kernel.org, torvalds@linux-foundation.org Subject: [patch 112/192] mm: fix typos and grammar error in comments Message-ID: <20210701015310.w1sgX-eEm%akpm@linux-foundation.org> In-Reply-To: <20210630184624.9ca1937310b0dd5ce66b30e7@linux-foundation.org> User-Agent: s-nail v14.8.16 Precedence: bulk Reply-To: linux-kernel@vger.kernel.org List-ID: X-Mailing-List: mm-commits@vger.kernel.org From: Hyeonggon Yoo <42.hyeyoo@gmail.com> Subject: mm: fix typos and grammar error in comments We moves tha -> We move that in mm/swap.c statments -> statements in include/linux/mm.h Link: https://lkml.kernel.org/r/20210509063444.GA24745@hyeyoo Signed-off-by: Hyeonggon Yoo <42.hyeyoo@gmail.com> Signed-off-by: Andrew Morton --- include/linux/mm.h | 2 +- mm/swap.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/include/linux/mm.h~mm-fix-typos-and-grammar-error-in-comments +++ a/include/linux/mm.h @@ -155,7 +155,7 @@ extern int mmap_rnd_compat_bits __read_m /* This function must be updated when the size of struct page grows above 80 * or reduces below 56. The idea that compiler optimizes out switch() * statement, and only leaves move/store instructions. Also the compiler can - * combine write statments if they are both assignments and can be reordered, + * combine write statements if they are both assignments and can be reordered, * this can result in several of the writes here being dropped. */ #define mm_zero_struct_page(pp) __mm_zero_struct_page(pp) --- a/mm/swap.c~mm-fix-typos-and-grammar-error-in-comments +++ a/mm/swap.c @@ -554,7 +554,7 @@ static void lru_deactivate_file_fn(struc } else { /* * The page's writeback ends up during pagevec - * We moves tha page into tail of inactive. + * We move that page into tail of inactive. */ add_page_to_lru_list_tail(page, lruvec); __count_vm_events(PGROTATED, nr_pages); _