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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6100FC433F5 for ; Sat, 7 May 2022 20:15:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1446984AbiEGUTF (ORCPT ); Sat, 7 May 2022 16:19:05 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51342 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234125AbiEGUTA (ORCPT ); Sat, 7 May 2022 16:19:00 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C8F01255BC for ; Sat, 7 May 2022 13:15:12 -0700 (PDT) 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 7369EB80BA3 for ; Sat, 7 May 2022 20:15:11 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B1BFFC385A6; Sat, 7 May 2022 20:15:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1651954510; bh=vy1aTQRyTt6mm1Fciyw9fxZa5j08wtLtUivP/CPXaw4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=HN9ADlsGpl4HGsRRNrNXHM0KLz5DLENt4xIO8fDLvSspVbIVqLC8KUvhKNCtkX1X4 D+6r3SrryyIDopT/IdvoVS3zxdIpNnrXrHGt8wgXl2lPBrzHDFIXF/SKOJMArRSxkD GGdT8bPiLKpo3FV1087u9Qf0CN2Ex4/qWqZtJUU0F2NLK7Y15PI9oKV4axf1aSKnV9 dDz2Q3LYiiWDEOJcaxd1FpBwCLbQh2KVCtzYl9Yb4Mqxa/ZQ7q3jaNhfejDUCPPH4A vqXh92WhDvy1suM/LE7B0tb2qfbY2gpX1I+7nAHqxRWqifIjp5qrLrPNt5Oh8mLN5f aWYnpY2bMn30w== From: SeongJae Park To: Gautam Menghani Cc: sj@kernel.org, skhan@linuxfoundation.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] Add documentation for Enum value 'NR_DAMON_OPS' in Date: Sat, 7 May 2022 20:15:07 +0000 Message-Id: <20220507201507.46050-1-sj@kernel.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220507165620.110706-1-gautammenghani201@gmail.com> References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Gautam, On Sat, 7 May 2022 22:26:20 +0530 Gautam Menghani wrote: > Fix the warning - "Enum value 'NR_DAMON_OPS' not described in > enum 'damon_ops_id'" generated by the command "make pdfdocs" > > Signed-off-by: Gautam Menghani > --- > Changes in v2: > - Fix checkpatch warning of 75 characters per line > - Fix email mismatch in from and signed by field Thank you for the fix, but please read below. Could you please adjust the subject so that we can know for what subsystem this change is made? E.g., mm/damon: Add documentation for ... > > include/linux/damon.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/include/linux/damon.h b/include/linux/damon.h > index f23cbfa4248d..b972a7a3b6f0 100644 > --- a/include/linux/damon.h > +++ b/include/linux/damon.h > @@ -262,6 +262,7 @@ struct damos { > * > * @DAMON_OPS_VADDR: Monitoring operations for virtual address spaces > * @DAMON_OPS_PADDR: Monitoring operations for the physical address space > + * @NR_DAMON_OPS: Number of monitoring operations for a particular implementation My previous comment to this part seems not answered? I'd suggest 's/for a particular implementation/implementations/' Thanks, SJ > */ > enum damon_ops_id { > DAMON_OPS_VADDR, > -- > 2.25.1 >