|
@@ -202,6 +202,7 @@ static int nfs_get_sb(struct file_system_type *, int, const char *, void *, stru
|
|
static int nfs_xdev_get_sb(struct file_system_type *fs_type,
|
|
static int nfs_xdev_get_sb(struct file_system_type *fs_type,
|
|
int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
|
|
int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
|
|
static void nfs_kill_super(struct super_block *);
|
|
static void nfs_kill_super(struct super_block *);
|
|
|
|
+static void nfs_put_super(struct super_block *);
|
|
|
|
|
|
static struct file_system_type nfs_fs_type = {
|
|
static struct file_system_type nfs_fs_type = {
|
|
.owner = THIS_MODULE,
|
|
.owner = THIS_MODULE,
|
|
@@ -223,6 +224,7 @@ static const struct super_operations nfs_sops = {
|
|
.alloc_inode = nfs_alloc_inode,
|
|
.alloc_inode = nfs_alloc_inode,
|
|
.destroy_inode = nfs_destroy_inode,
|
|
.destroy_inode = nfs_destroy_inode,
|
|
.write_inode = nfs_write_inode,
|
|
.write_inode = nfs_write_inode,
|
|
|
|
+ .put_super = nfs_put_super,
|
|
.statfs = nfs_statfs,
|
|
.statfs = nfs_statfs,
|
|
.clear_inode = nfs_clear_inode,
|
|
.clear_inode = nfs_clear_inode,
|
|
.umount_begin = nfs_umount_begin,
|
|
.umount_begin = nfs_umount_begin,
|
|
@@ -325,6 +327,28 @@ void __exit unregister_nfs_fs(void)
|
|
unregister_filesystem(&nfs_fs_type);
|
|
unregister_filesystem(&nfs_fs_type);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+void nfs_sb_active(struct nfs_server *server)
|
|
|
|
+{
|
|
|
|
+ atomic_inc(&server->active);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void nfs_sb_deactive(struct nfs_server *server)
|
|
|
|
+{
|
|
|
|
+ if (atomic_dec_and_test(&server->active))
|
|
|
|
+ wake_up(&server->active_wq);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void nfs_put_super(struct super_block *sb)
|
|
|
|
+{
|
|
|
|
+ struct nfs_server *server = NFS_SB(sb);
|
|
|
|
+ /*
|
|
|
|
+ * Make sure there are no outstanding ops to this server.
|
|
|
|
+ * If so, wait for them to finish before allowing the
|
|
|
|
+ * unmount to continue.
|
|
|
|
+ */
|
|
|
|
+ wait_event(server->active_wq, atomic_read(&server->active) == 0);
|
|
|
|
+}
|
|
|
|
+
|
|
/*
|
|
/*
|
|
* Deliver file system statistics to userspace
|
|
* Deliver file system statistics to userspace
|
|
*/
|
|
*/
|