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 EF2BCC433EF for ; Sun, 8 May 2022 09:21:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232289AbiEHJXo (ORCPT ); Sun, 8 May 2022 05:23:44 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52832 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232181AbiEHJXg (ORCPT ); Sun, 8 May 2022 05:23:36 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C41EAE015 for ; Sun, 8 May 2022 02:19:46 -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 dfw.source.kernel.org (Postfix) with ESMTPS id 03C5061011 for ; Sun, 8 May 2022 09:19:46 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E73EBC385AE; Sun, 8 May 2022 09:19:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1652001585; bh=nYtAmgzHu/LotnUz+1WFF6FvtCStuVXy90EhlpoDZxw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=eSciOgtnBiaUVF/dTyh2+OYkvO0AohnZVKPZOe2iTZzr8m217bD8qDXthQ25eLig5 V3F4gumj7yjO1Jie7seFasyFU7JyjJZoz06FQ8oXhPDb3bwjTWYkmGYaOOPqOMbtrb JLJ4E6iSGlwdgtJdZSaWnpvvzIczAQqs1Me88VNKUs9tFghbhpVEaDyibwdKSUG9MT isFMfgHdVxgRm+gPv4vIUBeBfw3cKML5Uwe+EP+CAIl7jnA2Z25+nvQgDY9OUKlDPX 2PIYBCsFbWm+Xdm6U8H/MVp9LwIB2omnCoD+DIDq1zn6/ua/AQvgdQ+RxSxvqooQEz F2fSS3lJalWVQ== 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] mm/damon : Add documentation for Enum value Date: Sun, 8 May 2022 09:19:43 +0000 Message-Id: <20220508091943.47042-1-sj@kernel.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220508073316.141401-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 Sun, 8 May 2022 13:03:16 +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 v3: > - Add the subsystem in subject. > - Modify the description for NR_DAMON_OPS field. Thank you for making the changes. Reviewed-by: SeongJae Park Thanks, SJ > > Changes in v2: > - Fix checkpatch warning of 75 characters per line > - Fix email mismatch in from and signed by field > > 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 implementations > */ > enum damon_ops_id { > DAMON_OPS_VADDR, > -- > 2.25.1 >