]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
ecryptfs: remove NULL remount_fs from super_operations
authorEric Sandeen <sandeen@redhat.com>
Fri, 28 Feb 2025 14:31:17 +0000 (08:31 -0600)
committerChristian Brauner <brauner@kernel.org>
Sat, 1 Mar 2025 10:02:36 +0000 (11:02 +0100)
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>
Link: https://lore.kernel.org/r/5dc2eb45-7126-4777-a7f9-29d02dff443f@redhat.com
Signed-off-by: Christian Brauner <brauner@kernel.org>
fs/ecryptfs/super.c

index 0b1c878317ab06b6134d43c812318f1819a3a3dd..e7b7f426fecfbcd5c249e499f06bd1ec791aa4ef 100644 (file)
@@ -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
 };