diff options
author | Christoph Hellwig <hch@infradead.org> | 2010-05-28 19:03:10 +0000 |
---|---|---|
committer | Alex Elder <aelder@sgi.com> | 2010-05-28 15:19:56 -0500 |
commit | fb3b504adeee942e55393396fea8fdf406acf037 (patch) | |
tree | 42486eb1c674ba2d76b719109e21a54a7df7b8fc /fs/xfs/xfs_iget.c | |
parent | 9b98b6f3e1534bba2efcd5b16318945cf2218d99 (diff) | |
download | linux-stable-fb3b504adeee942e55393396fea8fdf406acf037.tar.gz linux-stable-fb3b504adeee942e55393396fea8fdf406acf037.tar.bz2 linux-stable-fb3b504adeee942e55393396fea8fdf406acf037.zip |
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_iget.c')
-rw-r--r-- | fs/xfs/xfs_iget.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/xfs/xfs_iget.c b/fs/xfs/xfs_iget.c index 6845db90818f..f44a367907a8 100644 --- a/fs/xfs/xfs_iget.c +++ b/fs/xfs/xfs_iget.c @@ -382,9 +382,6 @@ xfs_iget( /* get the perag structure and ensure that it's inode capable */ pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ino)); - if (!pag->pagi_inodeok) - return EINVAL; - ASSERT(pag->pag_ici_init); agino = XFS_INO_TO_AGINO(mp, ino); again: |