All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next] btrfs: Fix argument list that the kdoc format and script verified.
@ 2021-12-20  7:23 Yang Li
  2022-01-03 18:27 ` David Sterba
  0 siblings, 1 reply; 2+ messages in thread
From: Yang Li @ 2021-12-20  7:23 UTC (permalink / raw)
  To: dsterba; +Cc: clm, josef, linux-btrfs, linux-kernel, Yang Li, Abaci Robot

The warnings were found by running scripts/kernel-doc, which is
caused by using 'make W=1'.

fs/btrfs/extent_io.c:3210: warning: Function parameter or member
'bio_ctrl' not described in 'btrfs_bio_add_page'
fs/btrfs/extent_io.c:3210: warning: Excess function parameter 'bio'
description in 'btrfs_bio_add_page'
fs/btrfs/extent_io.c:3210: warning: Excess function parameter
'prev_bio_flags' description in 'btrfs_bio_add_page'
fs/btrfs/space-info.c:1602: warning: Excess function parameter 'root'
description in 'btrfs_reserve_metadata_bytes'
fs/btrfs/space-info.c:1602: warning: Function parameter or member
'fs_info' not described in 'btrfs_reserve_metadata_bytes'

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---
 fs/btrfs/extent_io.c  | 5 ++---
 fs/btrfs/space-info.c | 2 +-
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c
index 9234d96a7fd5..a6b4a78848dd 100644
--- a/fs/btrfs/extent_io.c
+++ b/fs/btrfs/extent_io.c
@@ -3187,13 +3187,12 @@ struct bio *btrfs_bio_clone_partial(struct bio *orig, u64 offset, u64 size)
 /**
  * Attempt to add a page to bio
  *
- * @bio:	destination bio
+ * @bio_ctrl:	record both the bio, and its bio_flags
  * @page:	page to add to the bio
  * @disk_bytenr:  offset of the new bio or to check whether we are adding
  *                a contiguous page to the previous one
- * @pg_offset:	starting offset in the page
  * @size:	portion of page that we want to write
- * @prev_bio_flags:  flags of previous bio to see if we can merge the current one
+ * @pg_offset:	starting offset in the page
  * @bio_flags:	flags of the current bio to see if we can merge them
  *
  * Attempt to add a page to bio considering stripe alignment etc.
diff --git a/fs/btrfs/space-info.c b/fs/btrfs/space-info.c
index dbf8bfb8fcb3..618b59ff44ae 100644
--- a/fs/btrfs/space-info.c
+++ b/fs/btrfs/space-info.c
@@ -1583,7 +1583,7 @@ static int __reserve_bytes(struct btrfs_fs_info *fs_info,
 /**
  * Trye to reserve metadata bytes from the block_rsv's space
  *
- * @root:       the root we're allocating for
+ * @fs_info:    the filesystem
  * @block_rsv:  block_rsv we're allocating for
  * @orig_bytes: number of bytes we want
  * @flush:      whether or not we can flush to make our reservation
-- 
2.20.1.7.g153144c


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

* Re: [PATCH -next] btrfs: Fix argument list that the kdoc format and script verified.
  2021-12-20  7:23 [PATCH -next] btrfs: Fix argument list that the kdoc format and script verified Yang Li
@ 2022-01-03 18:27 ` David Sterba
  0 siblings, 0 replies; 2+ messages in thread
From: David Sterba @ 2022-01-03 18:27 UTC (permalink / raw)
  To: Yang Li; +Cc: dsterba, clm, josef, linux-btrfs, linux-kernel, Abaci Robot

On Mon, Dec 20, 2021 at 03:23:06PM +0800, Yang Li wrote:
> The warnings were found by running scripts/kernel-doc, which is
> caused by using 'make W=1'.
> 
> fs/btrfs/extent_io.c:3210: warning: Function parameter or member
> 'bio_ctrl' not described in 'btrfs_bio_add_page'
> fs/btrfs/extent_io.c:3210: warning: Excess function parameter 'bio'
> description in 'btrfs_bio_add_page'
> fs/btrfs/extent_io.c:3210: warning: Excess function parameter
> 'prev_bio_flags' description in 'btrfs_bio_add_page'
> fs/btrfs/space-info.c:1602: warning: Excess function parameter 'root'
> description in 'btrfs_reserve_metadata_bytes'
> fs/btrfs/space-info.c:1602: warning: Function parameter or member
> 'fs_info' not described in 'btrfs_reserve_metadata_bytes'
> 
> Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>

Added to misc-next, thanks. I've added a note why it's fixing only the
parameter warnings.

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

end of thread, other threads:[~2022-01-03 18:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-20  7:23 [PATCH -next] btrfs: Fix argument list that the kdoc format and script verified Yang Li
2022-01-03 18:27 ` David Sterba

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.