diff mbox series

ecryptfs: remove NULL remount_fs from super_operations

Message ID 5dc2eb45-7126-4777-a7f9-29d02dff443f@redhat.com (mailing list archive)
State New
Headers show
Series ecryptfs: remove NULL remount_fs from super_operations | expand

Commit Message

Eric Sandeen Feb. 28, 2025, 2:31 p.m. UTC
This got missed during the mount API conversion. This makes no functional
difference, but after we convert the last filesystem, we'll want to remove
the remount_fs op from super_operations altogether. So let's just get this
out of the way now.

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
---

Comments

Christian Brauner March 1, 2025, 9:28 a.m. UTC | #1
On Fri, 28 Feb 2025 08:31:17 -0600, Eric Sandeen wrote:
> This got missed during the mount API conversion. This makes no functional
> difference, but after we convert the last filesystem, we'll want to remove
> the remount_fs op from super_operations altogether. So let's just get this
> out of the way now.
> 
> 

Applied to the vfs-6.15.misc branch of the vfs/vfs.git tree.
Patches in the vfs-6.15.misc branch should appear in linux-next soon.

Please report any outstanding bugs that were missed during review in a
new review to the original patch series allowing us to drop it.

It's encouraged to provide Acked-bys and Reviewed-bys even though the
patch has now been applied. If possible patch trailers will be updated.

Note that commit hashes shown below are subject to change due to rebase,
trailer updates or similar. If in doubt, please check the listed branch.

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs.git
branch: vfs-6.15.misc

[1/1] ecryptfs: remove NULL remount_fs from super_operations
      https://git.kernel.org/vfs/vfs/c/46bbe45bef93
Tyler Hicks March 3, 2025, 3:49 p.m. UTC | #2
On 2025-02-28 08:31:17, Eric Sandeen wrote:
> This got missed during the mount API conversion. This makes no functional
> difference, but after we convert the last filesystem, we'll want to remove
> the remount_fs op from super_operations altogether. So let's just get this
> out of the way now.
> 
> Signed-off-by: Eric Sandeen <sandeen@redhat.com>

Acked-by: Tyler Hicks <code@tyhicks.com>

Thanks for picking it up, Christian.

Tyler

> ---
> 
> diff --git a/fs/ecryptfs/super.c b/fs/ecryptfs/super.c
> index 0b1c878317ab..e7b7f426fecf 100644
> --- a/fs/ecryptfs/super.c
> +++ b/fs/ecryptfs/super.c
> @@ -172,7 +172,6 @@ const struct super_operations ecryptfs_sops = {
>  	.destroy_inode = ecryptfs_destroy_inode,
>  	.free_inode = ecryptfs_free_inode,
>  	.statfs = ecryptfs_statfs,
> -	.remount_fs = NULL,
>  	.evict_inode = ecryptfs_evict_inode,
>  	.show_options = ecryptfs_show_options
>  };
>
diff mbox series

Patch

diff --git a/fs/ecryptfs/super.c b/fs/ecryptfs/super.c
index 0b1c878317ab..e7b7f426fecf 100644
--- a/fs/ecryptfs/super.c
+++ b/fs/ecryptfs/super.c
@@ -172,7 +172,6 @@  const struct super_operations ecryptfs_sops = {
 	.destroy_inode = ecryptfs_destroy_inode,
 	.free_inode = ecryptfs_free_inode,
 	.statfs = ecryptfs_statfs,
-	.remount_fs = NULL,
 	.evict_inode = ecryptfs_evict_inode,
 	.show_options = ecryptfs_show_options
 };