提交 ca4207ae 编写于 作者: N Nikolay Borisov 提交者: David Sterba

btrfs: fix function description formats in file-item.c

This fixes following W=1 warnings:

fs/btrfs/file-item.c:27: warning: Cannot understand  * @inode:  the inode we want to update the disk_i_size for
 on line 27 - I thought it was a doc line
fs/btrfs/file-item.c:65: warning: Cannot understand  * @inode - the inode we're modifying
 on line 65 - I thought it was a doc line
fs/btrfs/file-item.c:91: warning: Cannot understand  * @inode - the inode we're modifying
 on line 91 - I thought it was a doc line
Signed-off-by: NNikolay Borisov <nborisov@suse.com>
Reviewed-by: NDavid Sterba <dsterba@suse.com>
Signed-off-by: NDavid Sterba <dsterba@suse.com>
上级 9ad37bb3
...@@ -24,8 +24,10 @@ ...@@ -24,8 +24,10 @@
PAGE_SIZE)) PAGE_SIZE))
/** /**
* @inode - the inode we want to update the disk_i_size for * Set inode's size according to filesystem options
* @new_i_size - the i_size we want to set to, 0 if we use i_size *
* @inode: inode we want to update the disk_i_size for
* @new_i_size: i_size we want to set to, 0 if we use i_size
* *
* With NO_HOLES set this simply sets the disk_is_size to whatever i_size_read() * With NO_HOLES set this simply sets the disk_is_size to whatever i_size_read()
* returns as it is perfectly fine with a file that has holes without hole file * returns as it is perfectly fine with a file that has holes without hole file
...@@ -62,9 +64,11 @@ void btrfs_inode_safe_disk_i_size_write(struct btrfs_inode *inode, u64 new_i_siz ...@@ -62,9 +64,11 @@ void btrfs_inode_safe_disk_i_size_write(struct btrfs_inode *inode, u64 new_i_siz
} }
/** /**
* @inode - the inode we're modifying * Mark range within a file as having a new extent inserted
* @start - the start file offset of the file extent we've inserted *
* @len - the logical length of the file extent item * @inode: inode being modified
* @start: start file offset of the file extent we've inserted
* @len: logical length of the file extent item
* *
* Call when we are inserting a new file extent where there was none before. * Call when we are inserting a new file extent where there was none before.
* Does not need to call this in the case where we're replacing an existing file * Does not need to call this in the case where we're replacing an existing file
...@@ -88,9 +92,11 @@ int btrfs_inode_set_file_extent_range(struct btrfs_inode *inode, u64 start, ...@@ -88,9 +92,11 @@ int btrfs_inode_set_file_extent_range(struct btrfs_inode *inode, u64 start,
} }
/** /**
* @inode - the inode we're modifying * Marks an inode range as not having a backing extent
* @start - the start file offset of the file extent we've inserted *
* @len - the logical length of the file extent item * @inode: inode being modified
* @start: start file offset of the file extent we've inserted
* @len: logical length of the file extent item
* *
* Called when we drop a file extent, for example when we truncate. Doesn't * Called when we drop a file extent, for example when we truncate. Doesn't
* need to be called for cases where we're replacing a file extent, like when * need to be called for cases where we're replacing a file extent, like when
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册