linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm/damon: remove obsolete comments of kdamond_stop
@ 2022-05-30  2:20 Chengming Zhou
  2022-05-30 16:56 ` SeongJae Park
  2022-05-31  2:29 ` Muchun Song
  0 siblings, 2 replies; 3+ messages in thread
From: Chengming Zhou @ 2022-05-30  2:20 UTC (permalink / raw)
  To: sj; +Cc: damon, linux-mm, linux-kernel, Chengming Zhou

Since commit 0f91d13366a4 ("mm/damon: simplify stop mechanism")
delete kdamond_stop and change to use kthread stop mechanism,
these obsolete comments should be removed accordingly.

Signed-off-by: Chengming Zhou <zhouchengming@bytedance.com>
---
 include/linux/damon.h | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

diff --git a/include/linux/damon.h b/include/linux/damon.h
index 7c62da31ce4b..fa1c2968b1dd 100644
--- a/include/linux/damon.h
+++ b/include/linux/damon.h
@@ -397,7 +397,6 @@ struct damon_callback {
  * detail.
  *
  * @kdamond:		Kernel thread who does the monitoring.
- * @kdamond_stop:	Notifies whether kdamond should stop.
  * @kdamond_lock:	Mutex for the synchronizations with @kdamond.
  *
  * For each monitoring context, one kernel thread for the monitoring is
@@ -406,14 +405,14 @@ struct damon_callback {
  * Once started, the monitoring thread runs until explicitly required to be
  * terminated or every monitoring target is invalid.  The validity of the
  * targets is checked via the &damon_operations.target_valid of @ops.  The
- * termination can also be explicitly requested by writing non-zero to
- * @kdamond_stop.  The thread sets @kdamond to NULL when it terminates.
- * Therefore, users can know whether the monitoring is ongoing or terminated by
- * reading @kdamond.  Reads and writes to @kdamond and @kdamond_stop from
- * outside of the monitoring thread must be protected by @kdamond_lock.
- *
- * Note that the monitoring thread protects only @kdamond and @kdamond_stop via
- * @kdamond_lock.  Accesses to other fields must be protected by themselves.
+ * termination can also be explicitly requested by calling __damon_stop().
+ * The thread sets @kdamond to NULL when it terminates. Therefore, users can
+ * know whether the monitoring is ongoing or terminated by reading @kdamond.
+ * Reads and writes to @kdamond from outside of the monitoring thread must
+ * be protected by @kdamond_lock.
+ *
+ * Note that the monitoring thread protects only @kdamond via @kdamond_lock.
+ * Accesses to other fields must be protected by themselves.
  *
  * @ops:	Set of monitoring operations for given use cases.
  * @callback:	Set of callbacks for monitoring events notifications.
-- 
2.36.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] mm/damon: remove obsolete comments of kdamond_stop
  2022-05-30  2:20 [PATCH] mm/damon: remove obsolete comments of kdamond_stop Chengming Zhou
@ 2022-05-30 16:56 ` SeongJae Park
  2022-05-31  2:29 ` Muchun Song
  1 sibling, 0 replies; 3+ messages in thread
From: SeongJae Park @ 2022-05-30 16:56 UTC (permalink / raw)
  To: Chengming Zhou; +Cc: sj, damon, linux-mm, linux-kernel

Hi Chengming,

On Mon, 30 May 2022 10:20:16 +0800 Chengming Zhou <zhouchengming@bytedance.com> wrote:

> Since commit 0f91d13366a4 ("mm/damon: simplify stop mechanism")
> delete kdamond_stop and change to use kthread stop mechanism,
> these obsolete comments should be removed accordingly.

Good point, thank you!

> 
> Signed-off-by: Chengming Zhou <zhouchengming@bytedance.com>
> ---
>  include/linux/damon.h | 17 ++++++++---------
>  1 file changed, 8 insertions(+), 9 deletions(-)
> 
> diff --git a/include/linux/damon.h b/include/linux/damon.h
> index 7c62da31ce4b..fa1c2968b1dd 100644
> --- a/include/linux/damon.h
> +++ b/include/linux/damon.h
> @@ -397,7 +397,6 @@ struct damon_callback {
>   * detail.
>   *
>   * @kdamond:		Kernel thread who does the monitoring.
> - * @kdamond_stop:	Notifies whether kdamond should stop.
>   * @kdamond_lock:	Mutex for the synchronizations with @kdamond.
>   *
>   * For each monitoring context, one kernel thread for the monitoring is
> @@ -406,14 +405,14 @@ struct damon_callback {
>   * Once started, the monitoring thread runs until explicitly required to be
>   * terminated or every monitoring target is invalid.  The validity of the
>   * targets is checked via the &damon_operations.target_valid of @ops.  The
> - * termination can also be explicitly requested by writing non-zero to
> - * @kdamond_stop.  The thread sets @kdamond to NULL when it terminates.
> - * Therefore, users can know whether the monitoring is ongoing or terminated by
> - * reading @kdamond.  Reads and writes to @kdamond and @kdamond_stop from
> - * outside of the monitoring thread must be protected by @kdamond_lock.
> - *
> - * Note that the monitoring thread protects only @kdamond and @kdamond_stop via
> - * @kdamond_lock.  Accesses to other fields must be protected by themselves.
> + * termination can also be explicitly requested by calling __damon_stop().

'__damon_stop()' is a static function, so mentioning that here makes no sense.
Let's mention its wrapper, 'damon_stop()' instead.

After the change, you could add

Reviewed-by: SeongJae Park <sj@kernel.org>


Thanks,
SJ

> + * The thread sets @kdamond to NULL when it terminates. Therefore, users can
> + * know whether the monitoring is ongoing or terminated by reading @kdamond.
> + * Reads and writes to @kdamond from outside of the monitoring thread must
> + * be protected by @kdamond_lock.
> + *
> + * Note that the monitoring thread protects only @kdamond via @kdamond_lock.
> + * Accesses to other fields must be protected by themselves.
>   *
>   * @ops:	Set of monitoring operations for given use cases.
>   * @callback:	Set of callbacks for monitoring events notifications.
> -- 
> 2.36.1

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] mm/damon: remove obsolete comments of kdamond_stop
  2022-05-30  2:20 [PATCH] mm/damon: remove obsolete comments of kdamond_stop Chengming Zhou
  2022-05-30 16:56 ` SeongJae Park
@ 2022-05-31  2:29 ` Muchun Song
  1 sibling, 0 replies; 3+ messages in thread
From: Muchun Song @ 2022-05-31  2:29 UTC (permalink / raw)
  To: Chengming Zhou; +Cc: sj, damon, linux-mm, linux-kernel

On Mon, May 30, 2022 at 10:20:16AM +0800, Chengming Zhou wrote:
> Since commit 0f91d13366a4 ("mm/damon: simplify stop mechanism")
> delete kdamond_stop and change to use kthread stop mechanism,
> these obsolete comments should be removed accordingly.
> 
> Signed-off-by: Chengming Zhou <zhouchengming@bytedance.com>

Acked-by: Muchun Song <songmuchun@bytedance.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-05-31  2:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-30  2:20 [PATCH] mm/damon: remove obsolete comments of kdamond_stop Chengming Zhou
2022-05-30 16:56 ` SeongJae Park
2022-05-31  2:29 ` Muchun Song

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).