gfs2: Large-filesystem fix for 32-bit systems
Commit ff34245d
switched from iget5_locked to iget_locked among other
things, but iget_locked doesn't work for filesystems larger than 2^32
blocks on 32-bit systems. Switch back to iget5_locked. Filesystems
larger than 2^32 blocks are unrealistic to work well on 32-bit systems,
so this is mostly a code cleanliness fix.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
This commit is contained in:
parent
ec5ec66ba4
commit
cda9dd4207
|
@ -37,19 +37,34 @@
|
||||||
#include "super.h"
|
#include "super.h"
|
||||||
#include "glops.h"
|
#include "glops.h"
|
||||||
|
|
||||||
|
static int iget_test(struct inode *inode, void *opaque)
|
||||||
|
{
|
||||||
|
u64 no_addr = *(u64 *)opaque;
|
||||||
|
|
||||||
|
return GFS2_I(inode)->i_no_addr == no_addr;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int iget_set(struct inode *inode, void *opaque)
|
||||||
|
{
|
||||||
|
u64 no_addr = *(u64 *)opaque;
|
||||||
|
|
||||||
|
GFS2_I(inode)->i_no_addr = no_addr;
|
||||||
|
inode->i_ino = no_addr;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static struct inode *gfs2_iget(struct super_block *sb, u64 no_addr)
|
static struct inode *gfs2_iget(struct super_block *sb, u64 no_addr)
|
||||||
{
|
{
|
||||||
struct inode *inode;
|
struct inode *inode;
|
||||||
|
|
||||||
repeat:
|
repeat:
|
||||||
inode = iget_locked(sb, no_addr);
|
inode = iget5_locked(sb, no_addr, iget_test, iget_set, &no_addr);
|
||||||
if (!inode)
|
if (!inode)
|
||||||
return inode;
|
return inode;
|
||||||
if (is_bad_inode(inode)) {
|
if (is_bad_inode(inode)) {
|
||||||
iput(inode);
|
iput(inode);
|
||||||
goto repeat;
|
goto repeat;
|
||||||
}
|
}
|
||||||
GFS2_I(inode)->i_no_addr = no_addr;
|
|
||||||
return inode;
|
return inode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue