aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorPhillip Lougher <phillip@squashfs.org.uk>2012-03-08 21:27:49 -0500
committerPhillip Lougher <phillip@squashfs.org.uk>2012-03-09 22:01:02 -0500
commit2158d3fd2769546cd9004eaeb776fee946155238 (patch)
treefbaa85fc0635c7a968b969ac1795cf2e79ddbcfa /fs
parent47f4396e516639eb8cbd660e1c1c356b5a80aa25 (diff)
Squashfs: fix f_pos check in get_dir_index_using_offset
One off error in the f_pos check. If f_pos is 3 or less don't bother reading the index because we're at the start of the directory, and we obviously already know where that is on disk. This eliminates an unnecessary read. Signed-off-by: Phillip Lougher <phillip@squashfs.org.uk>
Diffstat (limited to 'fs')
-rw-r--r--fs/squashfs/dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/squashfs/dir.c b/fs/squashfs/dir.c
index 7142a6fd28d3..b381305c9a47 100644
--- a/fs/squashfs/dir.c
+++ b/fs/squashfs/dir.c
@@ -64,7 +64,7 @@ static int get_dir_index_using_offset(struct super_block *sb,
64 * is offset by 3 because we invent "." and ".." entries which are 64 * is offset by 3 because we invent "." and ".." entries which are
65 * not actually stored in the directory. 65 * not actually stored in the directory.
66 */ 66 */
67 if (f_pos < 3) 67 if (f_pos <= 3)
68 return f_pos; 68 return f_pos;
69 f_pos -= 3; 69 f_pos -= 3;
70 70