diff options
Diffstat (limited to 'fs/jfs/jfs_imap.c')
-rw-r--r-- | fs/jfs/jfs_imap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/jfs/jfs_imap.c b/fs/jfs/jfs_imap.c index c465607be991..c6530227cda6 100644 --- a/fs/jfs/jfs_imap.c +++ b/fs/jfs/jfs_imap.c | |||
@@ -386,7 +386,7 @@ int diRead(struct inode *ip) | |||
386 | return -EIO; | 386 | return -EIO; |
387 | } | 387 | } |
388 | 388 | ||
389 | /* locate the the disk inode requested */ | 389 | /* locate the disk inode requested */ |
390 | dp = (struct dinode *) mp->data; | 390 | dp = (struct dinode *) mp->data; |
391 | dp += rel_inode; | 391 | dp += rel_inode; |
392 | 392 | ||
@@ -1407,7 +1407,7 @@ int diAlloc(struct inode *pip, bool dir, struct inode *ip) | |||
1407 | inum = pip->i_ino + 1; | 1407 | inum = pip->i_ino + 1; |
1408 | ino = inum & (INOSPERIAG - 1); | 1408 | ino = inum & (INOSPERIAG - 1); |
1409 | 1409 | ||
1410 | /* back off the the hint if it is outside of the iag */ | 1410 | /* back off the hint if it is outside of the iag */ |
1411 | if (ino == 0) | 1411 | if (ino == 0) |
1412 | inum = pip->i_ino; | 1412 | inum = pip->i_ino; |
1413 | 1413 | ||