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=-19.4 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable 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 3B427C28CAA for ; Fri, 17 Sep 2021 12:40:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 24DD561246 for ; Fri, 17 Sep 2021 12:40:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233888AbhIQMmJ (ORCPT ); Fri, 17 Sep 2021 08:42:09 -0400 Received: from mail.kernel.org ([198.145.29.99]:35576 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S244492AbhIQMmG (ORCPT ); Fri, 17 Sep 2021 08:42:06 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 2920D610C9; Fri, 17 Sep 2021 12:40:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1631882444; bh=p1JDp2ez5z7QUwMAm1hC63DlakzzZ7n0efTl54YKOKw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=YPnYiFeKmwRwsnT2yW9ilSC+7hJB9SOOPjiVF/9vAMKwfwyFB/b8hvMFbKt2cVivz +qu4JHuGxNMGsNEsLgzMRua8dkWDPIpsykBM9JObywJmSF5KXEy+vdBMKO4c/hYWT8 UcjkX56Opd0NDfe0PswbxtFF89fIxx5BXJX0YwPApQg9JH4cVcIsJ0+APDaRkxqwQt zNxQTg5zEkbA54TNAVSzKE/mpBwZp6sV0zFGsDKEqMRT+m9jSVsyb+PKCtvGRYwU/c 1aMfq8aXd8B7DrRIBCF5wItRay56qBa6UIUK4XJxjTZoDSN8aa9YoVfedRuBqR/5VT EcPuvuFfO3h3A== From: SeongJae Park To: akpm@linux-foundation.org Cc: corbet@lwn.net, sj@kernel.org, linux-damon@amazon.com, linux-mm@kvack.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, SeongJae Park Subject: [PATCH 4/5] include/linux/damon.h: Fix kernel-doc comments for 'damon_callback' Date: Fri, 17 Sep 2021 12:39:57 +0000 Message-Id: <20210917123958.3819-5-sj@kernel.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20210917123958.3819-1-sj@kernel.org> References: <20210917123958.3819-1-sj@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-doc@vger.kernel.org From: SeongJae Park A few Kernel-doc comments in 'damon.h' are broken. This commit fixes those. Signed-off-by: SeongJae Park --- include/linux/damon.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/linux/damon.h b/include/linux/damon.h index d68b67b8d458..755d70804705 100644 --- a/include/linux/damon.h +++ b/include/linux/damon.h @@ -62,7 +62,7 @@ struct damon_target { struct damon_ctx; /** - * struct damon_primitive Monitoring primitives for given use cases. + * struct damon_primitive - Monitoring primitives for given use cases. * * @init: Initialize primitive-internal data structures. * @update: Update primitive-internal data structures. @@ -108,8 +108,8 @@ struct damon_primitive { void (*cleanup)(struct damon_ctx *context); }; -/* - * struct damon_callback Monitoring events notification callbacks. +/** + * struct damon_callback - Monitoring events notification callbacks. * * @before_start: Called before starting the monitoring. * @after_sampling: Called after each sampling. -- 2.17.1