diff options
author | David Chinner <david@fromorbit.com> | 2008-10-30 02:11:29 -0400 |
---|---|---|
committer | Lachlan McIlroy <lachlan@sgi.com> | 2008-10-30 02:11:29 -0400 |
commit | 6c7699c047c50403149ad91331dd39de47dea070 (patch) | |
tree | cb1be26f849f0d9c6014c311fde3c390b99c6cd3 /fs/xfs/xfs_mount.c | |
parent | 60197e8df364df326dcbb987519f367ad0ee1a11 (diff) |
[XFS] remove the mount inode list
Now we've removed all users of the mount inode list, we can kill it. This
reduces the size of the xfs_inode by 2 pointers.
SGI-PV: 988139
SGI-Modid: xfs-linux-melb:xfs-kern:32293a
Signed-off-by: David Chinner <david@fromorbit.com>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
Signed-off-by: Christoph Hellwig <hch@infradead.org>
Diffstat (limited to 'fs/xfs/xfs_mount.c')
-rw-r--r-- | fs/xfs/xfs_mount.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/xfs/xfs_mount.c b/fs/xfs/xfs_mount.c index 40338ff8fddd..43e5917465ae 100644 --- a/fs/xfs/xfs_mount.c +++ b/fs/xfs/xfs_mount.c | |||
@@ -1282,11 +1282,6 @@ xfs_unmountfs( | |||
1282 | xfs_unmountfs_wait(mp); /* wait for async bufs */ | 1282 | xfs_unmountfs_wait(mp); /* wait for async bufs */ |
1283 | xfs_log_unmount(mp); /* Done! No more fs ops. */ | 1283 | xfs_log_unmount(mp); /* Done! No more fs ops. */ |
1284 | 1284 | ||
1285 | /* | ||
1286 | * All inodes from this mount point should be freed. | ||
1287 | */ | ||
1288 | ASSERT(mp->m_inodes == NULL); | ||
1289 | |||
1290 | if ((mp->m_flags & XFS_MOUNT_NOUUID) == 0) | 1285 | if ((mp->m_flags & XFS_MOUNT_NOUUID) == 0) |
1291 | uuid_table_remove(&mp->m_sb.sb_uuid); | 1286 | uuid_table_remove(&mp->m_sb.sb_uuid); |
1292 | 1287 | ||