We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a2b958 commit 4df7a75Copy full SHA for 4df7a75
fs/f2fs/data.c
@@ -2856,7 +2856,6 @@ static int f2fs_write_cache_pages(struct address_space *mapping,
2856
};
2857
#endif
2858
int nr_pages;
2859
- pgoff_t uninitialized_var(writeback_index);
2860
pgoff_t index;
2861
pgoff_t end; /* Inclusive */
2862
pgoff_t done_index;
@@ -2875,8 +2874,7 @@ static int f2fs_write_cache_pages(struct address_space *mapping,
2875
2874
clear_inode_flag(mapping->host, FI_HOT_DATA);
2876
2877
if (wbc->range_cyclic) {
2878
- writeback_index = mapping->writeback_index; /* prev offset */
2879
- index = writeback_index;
+ index = mapping->writeback_index; /* prev offset */
2880
end = -1;
2881
} else {
2882
index = wbc->range_start >> PAGE_SHIFT;
0 commit comments