Received: by 2002:a05:6a10:206:0:0:0:0 with SMTP id 6csp214767pxj; Thu, 20 May 2021 07:50:59 -0700 (PDT) X-Google-Smtp-Source: ABdhPJy88SORqmBLiuqysZtJWrYt6Lhgd7vAiOaT0lCI7CDpBeFX88TXRtJo6x3ThSzZE/6B/jN0 X-Received: by 2002:a17:906:1c8b:: with SMTP id g11mr5206352ejh.158.1621522258844; Thu, 20 May 2021 07:50:58 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1621522258; cv=none; d=google.com; s=arc-20160816; b=BsXl4gmJjPxcWwGAFtBIBLU2IY856nXjK8lNdvNCBzPunoaHGIF63A73GkjCDbZwPK Swi4cGUa1punQip2BJXUL5rz1n83tIb1TbFwnFuzXNdachSFZ6GAU9Vjasn+//6Z6BJZ /GOaTOE8OGJY+faZH4bp/hsSsBhh7F/714FvEgYYBgjEhcfwh5tonYIudWDxXURQZXnp yNPvOnJN2bfeUlsdGbdTgAzLITopCrknU4RWra/umUnkthzic34U9qTviGcg/OWxwYvK ukNBG7+cBkGP9YIodKGKHTRDt5L6PBMPFuN8SOMR8GDkuocfDVyX3lL5J0lUkRH5Pfn1 AnWA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=sce+as7akgHutiUEBDidSqFaiG2883W4pruzf1quSAQ=; b=GSyEHJvyjB7ArGtWu3nQfBeqlB7PVGxJ2NlkoqX4DLuW7obAQJ9XzgJKb0RQhUTAxv O0tNyO98Oh6FDvFOfKNAmA+7Q4laAg7Ca51B8Ijn9RViB6xM3lK8QBSft6OdS8qMOBA+ 2NRzM4FP3zeUL6cDQ6iQ26ACrsBNHAWEPXht9ht1Lt04nKXqB1GP26Foohars2QOBm1V EPo6cvX9Ti3enlP74cC0gJ1xyL6eCj81fL14eQZQA4RWFG4Z8u0t66FH19WsTqoY1K5C uFSIXXhdHf+2eDXXkOP7KJJ2ly/E4NnNt2/P5vyZ1OeY5oR6JNM00yHnHBQjsxCShLtw 1n+A== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id p8si2868579edj.611.2021.05.20.07.50.33; Thu, 20 May 2021 07:50:58 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231248AbhETItx (ORCPT + 99 others); Thu, 20 May 2021 04:49:53 -0400 Received: from outbound-smtp33.blacknight.com ([81.17.249.66]:42033 "EHLO outbound-smtp33.blacknight.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231180AbhETItx (ORCPT ); Thu, 20 May 2021 04:49:53 -0400 Received: from mail.blacknight.com (pemlinmail03.blacknight.ie [81.17.254.16]) by outbound-smtp33.blacknight.com (Postfix) with ESMTPS id 6706ABAC2D for ; Thu, 20 May 2021 09:48:31 +0100 (IST) Received: (qmail 3202 invoked from network); 20 May 2021 08:48:31 -0000 Received: from unknown (HELO stampy.112glenside.lan) (mgorman@techsingularity.net@[84.203.23.168]) by 81.17.254.9 with ESMTPA; 20 May 2021 08:48:31 -0000 From: Mel Gorman To: Andrew Morton Cc: Michal Hocko , David Hildenbrand , Vlastimil Babka , Dan Streetman , Yang Shi , Linux-MM , LKML , Mel Gorman Subject: [PATCH 01/14] mm/vmscan: Remove kerneldoc-like comment from isolate_lru_pages Date: Thu, 20 May 2021 09:47:56 +0100 Message-Id: <20210520084809.8576-2-mgorman@techsingularity.net> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20210520084809.8576-1-mgorman@techsingularity.net> References: <20210520084809.8576-1-mgorman@techsingularity.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org make W=1 generates the following warning for vmscan.c mm/vmscan.c:1814: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst It is not a kerneldoc comment and isolate_lru_pages() is a static function. While the detailed comment is nice, it does not need to be exposed via kernel-doc. Signed-off-by: Mel Gorman --- mm/vmscan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mm/vmscan.c b/mm/vmscan.c index 5199b9696bab..73682ba1f93c 100644 --- a/mm/vmscan.c +++ b/mm/vmscan.c @@ -1810,7 +1810,7 @@ static __always_inline void update_lru_sizes(struct lruvec *lruvec, } -/** +/* * Isolating page from the lruvec to fill in @dst list by nr_to_scan times. * * lruvec->lru_lock is heavily contended. Some of the functions that -- 2.26.2