From 46a302bbb04d5a92e470a8191b520fe6968adc58 Mon Sep 17 00:00:00 2001 From: Will McVicker Date: Fri, 31 Jan 2020 12:55:22 -0800 Subject: [PATCH] ANDROID: GKI: fs: add umount_end() function to struct super_operations This reduces the ABI diff for the module_layout symbol. Bug: 148872640 Test: compile test (cherry picked from commit ee7bdc62fd01050285a88be851e2d2df7ff2818e) [willmcvicker: Only cherry-picked the ABI difference] Signed-off-by: Will McVicker Change-Id: I1e7e110316d90d190cb4fa1dcd18b70d0d6045f5 --- include/linux/fs.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/fs.h b/include/linux/fs.h index 006b53095af4..03db303ce975 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1908,6 +1908,7 @@ struct super_operations { void *(*clone_mnt_data) (void *); void (*copy_mnt_data) (void *, void *); void (*umount_begin) (struct super_block *); + void (*umount_end)(struct super_block *sb, int flags); int (*show_options)(struct seq_file *, struct dentry *); int (*show_options2)(struct vfsmount *,struct seq_file *, struct dentry *);