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 9CFDFC41535 for ; Mon, 9 May 2022 08:29:31 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236437AbiEII1X (ORCPT ); Mon, 9 May 2022 04:27:23 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48308 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236367AbiEIIRl (ORCPT ); Mon, 9 May 2022 04:17:41 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5AD001EE096 for ; Mon, 9 May 2022 01:13:17 -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 5837AB8100C for ; Mon, 9 May 2022 08:11:58 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id A0DB5C385AB; Mon, 9 May 2022 08:11:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1652083917; bh=0vlwj225AQCrduDkebsNRLXn8vRJT65zbF3Bkc9Eujc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=E8hYPyuX7ME5+wjWs5Qw/pbzOBy1lnJJ7PjEJRQfu4S0+h40IOxwhiJd8nsnElY+u aBdwBHoYhuVS5Ur9cbwU7t6WpcHFCOSmqARML4y7wnk4MWlkl8J3VRnpgqQZ1phBfm Q9fPisezTZzJqiLYmkyqF45IV5eRG6lW0Z6r9SJ+pdsojtrA4FFYe0o1GPOV9Kddap DQdU7o2Cg8VyqYoz0trKI6I5QHjRCimDCP9qfFFgj2EYmKwuTUI5f5WXUVUcOzcEdf kGd6qqDcuusd6p/8VlhV3+zztyHmd9ivuwPX10+ncRUhQaMCwXSzX54J6DF78+Da3K 9ANwZo4aYFZjA== From: SeongJae Park To: SeongJae Park Cc: Gautam Menghani , skhan@linuxfoundation.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] mm/damon : Add documentation for Enum value Date: Mon, 9 May 2022 08:11:54 +0000 Message-Id: <20220509081154.1834-1-sj@kernel.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220508091943.47042-1-sj@kernel.org> References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Gautam, I just found this patch is not cleanly applicable on top of the mm-unstable branch[1]. Could you please rebase? [1] https://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm.git/log/?h=mm-unstable Thanks, SJ On Sun, 8 May 2022 09:19:43 +0000 SeongJae Park wrote: > 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 > >