diff mbox series

Btrfs: get rid of btrfs_symlink_aops

Message ID 0794275791ff92b445d78d3dd08c67a30a347bbb.1537827364.git.osandov@fb.com (mailing list archive)
State New, archived
Headers show
Series Btrfs: get rid of btrfs_symlink_aops | expand

Commit Message

Omar Sandoval Sept. 24, 2018, 10:16 p.m. UTC
From: Omar Sandoval <osandov@fb.com>

The only aops we define for symlinks are identical to the aops for
regular files. This has been the case since symlink support was added in
commit 2b8d99a723a3 ("Btrfs: symlinks and hard links"). As far as I can
tell, there wasn't a good reason to have separate aops then, and there
isn't now, so let's just do what most other filesystems do and reuse the
same structure.

Signed-off-by: Omar Sandoval <osandov@fb.com>
---
Based on v4.19-rc5.

 fs/btrfs/inode.c | 12 ++----------
 1 file changed, 2 insertions(+), 10 deletions(-)

Comments

Nikolay Borisov Sept. 25, 2018, 5:42 a.m. UTC | #1
On 25.09.2018 01:16, Omar Sandoval wrote:
> From: Omar Sandoval <osandov@fb.com>
> 
> The only aops we define for symlinks are identical to the aops for
> regular files. This has been the case since symlink support was added in
> commit 2b8d99a723a3 ("Btrfs: symlinks and hard links"). As far as I can
> tell, there wasn't a good reason to have separate aops then, and there
> isn't now, so let's just do what most other filesystems do and reuse the
> same structure.
> 
> Signed-off-by: Omar Sandoval <osandov@fb.com>

The only difference would be if for symlink it's required to not have
certain operations defined.

Reviewed-by: Nikolay Borisov <nborisov@suse.com>

> ---
> Based on v4.19-rc5.
> 
>  fs/btrfs/inode.c | 12 ++----------
>  1 file changed, 2 insertions(+), 10 deletions(-)
> 
> diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
> index 3ea5339603cf..590063b0b6dc 100644
> --- a/fs/btrfs/inode.c
> +++ b/fs/btrfs/inode.c
> @@ -64,7 +64,6 @@ static const struct inode_operations btrfs_dir_ro_inode_operations;
>  static const struct inode_operations btrfs_special_inode_operations;
>  static const struct inode_operations btrfs_file_inode_operations;
>  static const struct address_space_operations btrfs_aops;
> -static const struct address_space_operations btrfs_symlink_aops;
>  static const struct file_operations btrfs_dir_file_operations;
>  static const struct extent_io_ops btrfs_extent_io_ops;
>  
> @@ -3738,7 +3737,7 @@ static int btrfs_read_locked_inode(struct inode *inode)
>  	case S_IFLNK:
>  		inode->i_op = &btrfs_symlink_inode_operations;
>  		inode_nohighmem(inode);
> -		inode->i_mapping->a_ops = &btrfs_symlink_aops;
> +		inode->i_mapping->a_ops = &btrfs_aops;
>  		break;
>  	default:
>  		inode->i_op = &btrfs_special_inode_operations;
> @@ -10191,7 +10190,7 @@ static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
>  
>  	inode->i_op = &btrfs_symlink_inode_operations;
>  	inode_nohighmem(inode);
> -	inode->i_mapping->a_ops = &btrfs_symlink_aops;
> +	inode->i_mapping->a_ops = &btrfs_aops;
>  	inode_set_bytes(inode, name_len);
>  	btrfs_i_size_write(BTRFS_I(inode), name_len);
>  	err = btrfs_update_inode(trans, root, inode);
> @@ -10567,13 +10566,6 @@ static const struct address_space_operations btrfs_aops = {
>  	.error_remove_page = generic_error_remove_page,
>  };
>  
> -static const struct address_space_operations btrfs_symlink_aops = {
> -	.readpage	= btrfs_readpage,
> -	.writepage	= btrfs_writepage,
> -	.invalidatepage = btrfs_invalidatepage,
> -	.releasepage	= btrfs_releasepage,
> -};
> -
>  static const struct inode_operations btrfs_file_inode_operations = {
>  	.getattr	= btrfs_getattr,
>  	.setattr	= btrfs_setattr,
>
David Sterba Sept. 25, 2018, 9:26 a.m. UTC | #2
On Mon, Sep 24, 2018 at 03:16:55PM -0700, Omar Sandoval wrote:
> From: Omar Sandoval <osandov@fb.com>
> 
> The only aops we define for symlinks are identical to the aops for
> regular files. This has been the case since symlink support was added in
> commit 2b8d99a723a3 ("Btrfs: symlinks and hard links"). As far as I can
> tell, there wasn't a good reason to have separate aops then, and there
> isn't now, so let's just do what most other filesystems do and reuse the
> same structure.
> 
> Signed-off-by: Omar Sandoval <osandov@fb.com>

Reviewed-by: David Sterba <dsterba@suse.com>

Can we also reuse btrfs_inode_operations for
btrfs_special_inode_operations ? The only difference is the fiemap
operation, so if the special files must not implement that callback,
this could be decided inside that.
diff mbox series

Patch

diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index 3ea5339603cf..590063b0b6dc 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -64,7 +64,6 @@  static const struct inode_operations btrfs_dir_ro_inode_operations;
 static const struct inode_operations btrfs_special_inode_operations;
 static const struct inode_operations btrfs_file_inode_operations;
 static const struct address_space_operations btrfs_aops;
-static const struct address_space_operations btrfs_symlink_aops;
 static const struct file_operations btrfs_dir_file_operations;
 static const struct extent_io_ops btrfs_extent_io_ops;
 
@@ -3738,7 +3737,7 @@  static int btrfs_read_locked_inode(struct inode *inode)
 	case S_IFLNK:
 		inode->i_op = &btrfs_symlink_inode_operations;
 		inode_nohighmem(inode);
-		inode->i_mapping->a_ops = &btrfs_symlink_aops;
+		inode->i_mapping->a_ops = &btrfs_aops;
 		break;
 	default:
 		inode->i_op = &btrfs_special_inode_operations;
@@ -10191,7 +10190,7 @@  static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
 
 	inode->i_op = &btrfs_symlink_inode_operations;
 	inode_nohighmem(inode);
-	inode->i_mapping->a_ops = &btrfs_symlink_aops;
+	inode->i_mapping->a_ops = &btrfs_aops;
 	inode_set_bytes(inode, name_len);
 	btrfs_i_size_write(BTRFS_I(inode), name_len);
 	err = btrfs_update_inode(trans, root, inode);
@@ -10567,13 +10566,6 @@  static const struct address_space_operations btrfs_aops = {
 	.error_remove_page = generic_error_remove_page,
 };
 
-static const struct address_space_operations btrfs_symlink_aops = {
-	.readpage	= btrfs_readpage,
-	.writepage	= btrfs_writepage,
-	.invalidatepage = btrfs_invalidatepage,
-	.releasepage	= btrfs_releasepage,
-};
-
 static const struct inode_operations btrfs_file_inode_operations = {
 	.getattr	= btrfs_getattr,
 	.setattr	= btrfs_setattr,