From: David Howells Date: Wed, 16 May 2007 06:57:02 +0000 (-0700) Subject: AFS: write back dirty data on unmount X-Git-Tag: v2.6.22-rc2~74 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=faab83bbcd9e001077e42a7c085f1e871997647f;p=~shefty%2Frdma-dev.git AFS: write back dirty data on unmount Fix AFS to write back dirty on unmounting. This didn't happen because afs_super_ops.drop_inode was pointing to generic_delete_inode. Now this pointer is left set to NULL so that the default behaviour occurs instead. Signed-off-by: David Howells Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/afs/super.c b/fs/afs/super.c index 579af632c8e..370cecc910d 100644 --- a/fs/afs/super.c +++ b/fs/afs/super.c @@ -47,7 +47,6 @@ struct file_system_type afs_fs_type = { static const struct super_operations afs_super_ops = { .statfs = afs_statfs, .alloc_inode = afs_alloc_inode, - .drop_inode = generic_delete_inode, .write_inode = afs_write_inode, .destroy_inode = afs_destroy_inode, .clear_inode = afs_clear_inode,