btrfs-progs: constify the name parameter of btrfs_add_link()
The name is never touched, thus it should be const. Reviewed-by: Boris Burkov <boris@bur.io> Signed-off-by: Qu Wenruo <wqu@suse.com>
This commit is contained in:
parent
880651b969
commit
afae10ddb6
|
@ -1210,7 +1210,7 @@ int btrfs_new_inode(struct btrfs_trans_handle *trans, struct btrfs_root *root,
|
|||
int btrfs_change_inode_flags(struct btrfs_trans_handle *trans,
|
||||
struct btrfs_root *root, u64 ino, u64 flags);
|
||||
int btrfs_add_link(struct btrfs_trans_handle *trans, struct btrfs_root *root,
|
||||
u64 ino, u64 parent_ino, char *name, int namelen,
|
||||
u64 ino, u64 parent_ino, const char *name, int namelen,
|
||||
u8 type, u64 *index, int add_backref, int ignore_existed);
|
||||
int btrfs_unlink(struct btrfs_trans_handle *trans, struct btrfs_root *root,
|
||||
u64 ino, u64 parent_ino, u64 index, const char *name,
|
||||
|
|
|
@ -167,7 +167,7 @@ out:
|
|||
* Currently only supports adding link from an inode to another inode.
|
||||
*/
|
||||
int btrfs_add_link(struct btrfs_trans_handle *trans, struct btrfs_root *root,
|
||||
u64 ino, u64 parent_ino, char *name, int namelen,
|
||||
u64 ino, u64 parent_ino, const char *name, int namelen,
|
||||
u8 type, u64 *index, int add_backref, int ignore_existed)
|
||||
{
|
||||
struct btrfs_path *path;
|
||||
|
|
Loading…
Reference in New Issue