diff options
author | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2020-10-27 10:51:27 +0100 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2020-10-28 13:42:36 -0400 |
commit | ea4b01d9b81f5f381fc6832bc31046878a2d1a5d (patch) | |
tree | dddd9ac246469cf0d91d4047e70fd2f320519cdd | |
parent | ababea77bc50e004f7cc2792f0ec8d26b7574c3e (diff) |
jbd2: fix a kernel-doc markup
The kernel-doc markup that documents _fc_replay_callback is
missing an asterisk, causing this warning:
../include/linux/jbd2.h:1271: warning: Function parameter or member 'j_fc_replay_callback' not described in 'journal_s'
When building the docs.
Fixes: 609f928af48f ("jbd2: fast commit recovery path")
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Link: https://lore.kernel.org/r/6055927ada2015b55b413cdd2670533bdc9a8da2.1603791716.git.mchehab+huawei@kernel.org
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
-rw-r--r-- | include/linux/jbd2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/jbd2.h b/include/linux/jbd2.h index 7e88bbc16ffb..1d5566af48ac 100644 --- a/include/linux/jbd2.h +++ b/include/linux/jbd2.h @@ -1256,7 +1256,7 @@ struct journal_s */ void (*j_fc_cleanup_callback)(struct journal_s *journal, int); - /* + /** * @j_fc_replay_callback: * * File-system specific function that performs replay of a fast |