From bf130af698f99ad03c4b28c04904e6029ba6950d Mon Sep 17 00:00:00 2001 From: Joseph Qi Date: Mon, 9 Dec 2019 09:52:34 +0800 Subject: [PATCH] alinux: jbd2/doc: fix new kernel-doc warning Fix the following kernel-doc warning: include/linux/jbd2.h:1184: warning: Function parameter or member 'j_checkpoint_task' not described in 'journal_s' Fixes: 3999cdd966d5 ("alinux: jbd2: create jbd2-ckpt thread for journal checkpoint") Reported-by: kbuild test robot Signed-off-by: Joseph Qi Reviewed-by: Jeffle Xu Acked-by: Caspar Zhang --- include/linux/jbd2.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/linux/jbd2.h b/include/linux/jbd2.h index 6ea23b7f05eb..6c5859c63c7a 100644 --- a/include/linux/jbd2.h +++ b/include/linux/jbd2.h @@ -1118,7 +1118,11 @@ struct journal_s void (*j_commit_callback)(journal_t *, transaction_t *); - /* Pointer to the current checkpoint thread for this journal */ + /** + * @j_checkpoint_task: + * + * Pointer to the current checkpoint thread for this journal. + */ struct task_struct *j_checkpoint_task; /* -- GitLab