diff options
author | Christoph Hellwig <hch@infradead.org> | 2010-05-28 23:03:10 +0400 |
---|---|---|
committer | Alex Elder <aelder@sgi.com> | 2010-05-29 00:19:56 +0400 |
commit | fb3b504adeee942e55393396fea8fdf406acf037 (patch) | |
tree | 42486eb1c674ba2d76b719109e21a54a7df7b8fc /fs/xfs/xfs_ag.h | |
parent | 9b98b6f3e1534bba2efcd5b16318945cf2218d99 (diff) | |
download | linux-fb3b504adeee942e55393396fea8fdf406acf037.tar.xz |
xfs: fix access to upper inodes without inode64
If a filesystem is mounted without the inode64 mount option we
should still be able to access inodes not fitting into 32 bits, just
not created new ones. For this to work we need to make sure the
inode cache radix tree is initialized for all allocation groups, not
just those we plan to allocate inodes from. This patch makes sure
we initialize the inode cache radix tree for all allocation groups,
and also cleans xfs_initialize_perag up a bit to separate the
inode32 logical from the general perag structure setup.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_ag.h')
-rw-r--r-- | fs/xfs/xfs_ag.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/xfs/xfs_ag.h b/fs/xfs/xfs_ag.h index 401f364ad36c..4917d4eed4ed 100644 --- a/fs/xfs/xfs_ag.h +++ b/fs/xfs/xfs_ag.h @@ -227,7 +227,6 @@ typedef struct xfs_perag { atomic_t pagf_fstrms; /* # of filestreams active in this AG */ - int pag_ici_init; /* incore inode cache initialised */ rwlock_t pag_ici_lock; /* incore inode lock */ struct radix_tree_root pag_ici_root; /* incore inode cache root */ int pag_ici_reclaimable; /* reclaimable inodes */ |