diff options
Diffstat (limited to 'fs/ocfs2/suballoc.c')
-rw-r--r-- | fs/ocfs2/suballoc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/ocfs2/suballoc.c b/fs/ocfs2/suballoc.c index 213bdca16fe4..d7a6f928c317 100644 --- a/fs/ocfs2/suballoc.c +++ b/fs/ocfs2/suballoc.c | |||
@@ -601,9 +601,10 @@ int ocfs2_reserve_new_inode(struct ocfs2_super *osb, | |||
601 | /* | 601 | /* |
602 | * stat(2) can't handle i_ino > 32bits, so we tell the | 602 | * stat(2) can't handle i_ino > 32bits, so we tell the |
603 | * lower levels not to allocate us a block group past that | 603 | * lower levels not to allocate us a block group past that |
604 | * limit. | 604 | * limit. The 'inode64' mount option avoids this behavior. |
605 | */ | 605 | */ |
606 | (*ac)->ac_max_block = (u32)~0U; | 606 | if (!(osb->s_mount_opt & OCFS2_MOUNT_INODE64)) |
607 | (*ac)->ac_max_block = (u32)~0U; | ||
607 | 608 | ||
608 | /* | 609 | /* |
609 | * slot is set when we successfully steal inode from other nodes. | 610 | * slot is set when we successfully steal inode from other nodes. |