diff options
author | yalin wang <yalin.wang2010@gmail.com> | 2016-07-05 16:32:32 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2016-07-05 16:32:32 -0400 |
commit | de9e9181bc066d63d78b768e95b5d949e2a8673a (patch) | |
tree | 3a7035132ba567639033e75ba05f9689ae4fcd17 /fs/ext4 | |
parent | 6a7fd522a7c94cdef0a3b08acf8e6702056e635c (diff) |
ext4: remove unused page_idx
Signed-off-by: yalin wang <yalin.wang2010@gmail.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Reviewed-by: Jan Kara <jack@suse.com>
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/readpage.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/ext4/readpage.c b/fs/ext4/readpage.c index dc54a4b60eba..e24ec3bfe1b5 100644 --- a/fs/ext4/readpage.c +++ b/fs/ext4/readpage.c | |||
@@ -135,7 +135,6 @@ int ext4_mpage_readpages(struct address_space *mapping, | |||
135 | unsigned nr_pages) | 135 | unsigned nr_pages) |
136 | { | 136 | { |
137 | struct bio *bio = NULL; | 137 | struct bio *bio = NULL; |
138 | unsigned page_idx; | ||
139 | sector_t last_block_in_bio = 0; | 138 | sector_t last_block_in_bio = 0; |
140 | 139 | ||
141 | struct inode *inode = mapping->host; | 140 | struct inode *inode = mapping->host; |
@@ -157,7 +156,7 @@ int ext4_mpage_readpages(struct address_space *mapping, | |||
157 | map.m_len = 0; | 156 | map.m_len = 0; |
158 | map.m_flags = 0; | 157 | map.m_flags = 0; |
159 | 158 | ||
160 | for (page_idx = 0; nr_pages; page_idx++, nr_pages--) { | 159 | for (; nr_pages; nr_pages--) { |
161 | int fully_mapped = 1; | 160 | int fully_mapped = 1; |
162 | unsigned first_hole = blocks_per_page; | 161 | unsigned first_hole = blocks_per_page; |
163 | 162 | ||