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=-3.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS autolearn=no 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 EEA50C432C0 for ; Sun, 1 Dec 2019 01:58:16 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id B0FFB205ED for ; Sun, 1 Dec 2019 01:58:16 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="vqhFtUZE" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org B0FFB205ED Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=linux-foundation.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=owner-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix) id 5CDF36B0399; Sat, 30 Nov 2019 20:58:16 -0500 (EST) Received: by kanga.kvack.org (Postfix, from userid 40) id 5A5C66B039B; Sat, 30 Nov 2019 20:58:16 -0500 (EST) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 4E2B06B039C; Sat, 30 Nov 2019 20:58:16 -0500 (EST) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0104.hostedemail.com [216.40.44.104]) by kanga.kvack.org (Postfix) with ESMTP id 33EA26B0399 for ; Sat, 30 Nov 2019 20:58:16 -0500 (EST) Received: from smtpin09.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay04.hostedemail.com (Postfix) with SMTP id DA0CF40FE for ; Sun, 1 Dec 2019 01:58:15 +0000 (UTC) X-FDA: 76214912550.09.pump79_481e7b7e51c25 X-HE-Tag: pump79_481e7b7e51c25 X-Filterd-Recvd-Size: 2470 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by imf44.hostedemail.com (Postfix) with ESMTP for ; Sun, 1 Dec 2019 01:58:15 +0000 (UTC) Received: from localhost.localdomain (c-73-231-172-41.hsd1.ca.comcast.net [73.231.172.41]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 9679F208C3; Sun, 1 Dec 2019 01:58:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1575165494; bh=rWkuTjIBn+tUg/zhMPzoixOfiWhxOs3ffK5HD7Su2EM=; h=Date:From:To:Subject:From; b=vqhFtUZEA4xoJYAQMNw94lallng+Wq/vaPabpxsyxh+W3CD0YIlkHaw1jV87EzjGM hwomdTIOxZHOZPvcB3RuYXqcpR3Cr4YufWfbIliBxvG91D8QKfRdQCj7JOpVdb6D2a 3g65SXeALhPQYZXhd+7uiCSp1QQbmTyg7zh5wMAc= Date: Sat, 30 Nov 2019 17:58:14 -0800 From: akpm@linux-foundation.org To: akpm@linux-foundation.org, haolee.swjtu@gmail.com, linux-mm@kvack.org, mm-commits@vger.kernel.org, richardw.yang@linux.intel.com, torvalds@linux-foundation.org Subject: [patch 153/158] mm: fix struct member name in function comments Message-ID: <20191201015814.UBzEhabPo%akpm@linux-foundation.org> User-Agent: s-nail v14.8.16 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: From: Hao Lee Subject: mm: fix struct member name in function comments The member in struct zonelist is _zonerefs instead of zones. Link: http://lkml.kernel.org/r/20190927144049.GA29622@haolee.github.io Signed-off-by: Hao Lee Reviewed-by: Andrew Morton Reviewed-by: Wei Yang Signed-off-by: Andrew Morton --- include/linux/mmzone.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/include/linux/mmzone.h~mm-fix-struct-member-name-in-function-comments +++ a/include/linux/mmzone.h @@ -1085,7 +1085,7 @@ static inline struct zoneref *first_zone /** * for_each_zone_zonelist_nodemask - helper macro to iterate over valid zones in a zonelist at or below a given zone index and within a nodemask * @zone - The current zone in the iterator - * @z - The current pointer within zonelist->zones being iterated + * @z - The current pointer within zonelist->_zonerefs being iterated * @zlist - The zonelist being iterated * @highidx - The zone index of the highest zone to return * @nodemask - Nodemask allowed by the allocator _