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_inode.h | |
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_inode.h')
-rw-r--r-- | fs/xfs/xfs_inode.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/fs/xfs/xfs_inode.h b/fs/xfs/xfs_inode.h index 104623b7ec6e..55d50b888b68 100644 --- a/fs/xfs/xfs_inode.h +++ b/fs/xfs/xfs_inode.h | |||
@@ -233,16 +233,8 @@ typedef struct dm_attrs_s { | |||
233 | __uint16_t da_pad; /* DMIG extra padding */ | 233 | __uint16_t da_pad; /* DMIG extra padding */ |
234 | } dm_attrs_t; | 234 | } dm_attrs_t; |
235 | 235 | ||
236 | typedef struct { | ||
237 | struct xfs_inode *ip_mnext; /* next inode in mount list */ | ||
238 | struct xfs_inode *ip_mprev; /* ptr to prev inode */ | ||
239 | struct xfs_mount *ip_mount; /* fs mount struct ptr */ | ||
240 | } xfs_iptr_t; | ||
241 | |||
242 | typedef struct xfs_inode { | 236 | typedef struct xfs_inode { |
243 | /* Inode linking and identification information. */ | 237 | /* Inode linking and identification information. */ |
244 | struct xfs_inode *i_mnext; /* next inode in mount list */ | ||
245 | struct xfs_inode *i_mprev; /* ptr to prev inode */ | ||
246 | struct xfs_mount *i_mount; /* fs mount struct ptr */ | 238 | struct xfs_mount *i_mount; /* fs mount struct ptr */ |
247 | struct list_head i_reclaim; /* reclaim list */ | 239 | struct list_head i_reclaim; /* reclaim list */ |
248 | struct inode *i_vnode; /* vnode backpointer */ | 240 | struct inode *i_vnode; /* vnode backpointer */ |