aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_vfsops.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs/xfs_vfsops.c')
-rw-r--r--fs/xfs/xfs_vfsops.c83
1 files changed, 0 insertions, 83 deletions
diff --git a/fs/xfs/xfs_vfsops.c b/fs/xfs/xfs_vfsops.c
deleted file mode 100644
index 559fb8d51084..000000000000
--- a/fs/xfs/xfs_vfsops.c
+++ /dev/null
@@ -1,83 +0,0 @@
1/*
2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18#include "xfs.h"
19#include "xfs_fs.h"
20#include "xfs_types.h"
21#include "xfs_bit.h"
22#include "xfs_log.h"
23#include "xfs_inum.h"
24#include "xfs_trans.h"
25#include "xfs_sb.h"
26#include "xfs_ag.h"
27#include "xfs_dir2.h"
28#include "xfs_dmapi.h"
29#include "xfs_mount.h"
30#include "xfs_da_btree.h"
31#include "xfs_bmap_btree.h"
32#include "xfs_ialloc_btree.h"
33#include "xfs_alloc_btree.h"
34#include "xfs_dir2_sf.h"
35#include "xfs_attr_sf.h"
36#include "xfs_dinode.h"
37#include "xfs_inode.h"
38#include "xfs_inode_item.h"
39#include "xfs_btree.h"
40#include "xfs_alloc.h"
41#include "xfs_ialloc.h"
42#include "xfs_quota.h"
43#include "xfs_error.h"
44#include "xfs_bmap.h"
45#include "xfs_rw.h"
46#include "xfs_buf_item.h"
47#include "xfs_log_priv.h"
48#include "xfs_dir2_trace.h"
49#include "xfs_extfree_item.h"
50#include "xfs_acl.h"
51#include "xfs_attr.h"
52#include "xfs_mru_cache.h"
53#include "xfs_filestream.h"
54#include "xfs_fsops.h"
55#include "xfs_vnodeops.h"
56#include "xfs_utils.h"
57#include "xfs_sync.h"
58
59
60/*
61 * xfs_unmount_flush implements a set of flush operation on special
62 * inodes, which are needed as a separate set of operations so that
63 * they can be called as part of relocation process.
64 */
65int
66xfs_unmount_flush(
67 xfs_mount_t *mp, /* Mount structure we are getting
68 rid of. */
69 int relocation) /* Called from vfs relocation. */
70{
71 /*
72 * Release dquot that rootinode, rbmino and rsumino might be holding,
73 * flush and purge the quota inodes.
74 */
75 XFS_QM_UNMOUNT(mp);
76
77 if (mp->m_rbmip)
78 IRELE(mp->m_rbmip);
79 if (mp->m_rsumip)
80 IRELE(mp->m_rsumip);
81
82 return 0;
83}