|
@@ -438,7 +438,6 @@ no_more:
|
|
|
*/
|
|
|
int afs_writepage(struct page *page, struct writeback_control *wbc)
|
|
|
{
|
|
|
- struct backing_dev_info *bdi = page->mapping->backing_dev_info;
|
|
|
struct afs_writeback *wb;
|
|
|
int ret;
|
|
|
|
|
@@ -455,8 +454,6 @@ int afs_writepage(struct page *page, struct writeback_control *wbc)
|
|
|
}
|
|
|
|
|
|
wbc->nr_to_write -= ret;
|
|
|
- if (wbc->nonblocking && bdi_write_congested(bdi))
|
|
|
- wbc->encountered_congestion = 1;
|
|
|
|
|
|
_leave(" = 0");
|
|
|
return 0;
|
|
@@ -469,7 +466,6 @@ static int afs_writepages_region(struct address_space *mapping,
|
|
|
struct writeback_control *wbc,
|
|
|
pgoff_t index, pgoff_t end, pgoff_t *_next)
|
|
|
{
|
|
|
- struct backing_dev_info *bdi = mapping->backing_dev_info;
|
|
|
struct afs_writeback *wb;
|
|
|
struct page *page;
|
|
|
int ret, n;
|
|
@@ -529,11 +525,6 @@ static int afs_writepages_region(struct address_space *mapping,
|
|
|
|
|
|
wbc->nr_to_write -= ret;
|
|
|
|
|
|
- if (wbc->nonblocking && bdi_write_congested(bdi)) {
|
|
|
- wbc->encountered_congestion = 1;
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
cond_resched();
|
|
|
} while (index < end && wbc->nr_to_write > 0);
|
|
|
|
|
@@ -548,24 +539,16 @@ static int afs_writepages_region(struct address_space *mapping,
|
|
|
int afs_writepages(struct address_space *mapping,
|
|
|
struct writeback_control *wbc)
|
|
|
{
|
|
|
- struct backing_dev_info *bdi = mapping->backing_dev_info;
|
|
|
pgoff_t start, end, next;
|
|
|
int ret;
|
|
|
|
|
|
_enter("");
|
|
|
|
|
|
- if (wbc->nonblocking && bdi_write_congested(bdi)) {
|
|
|
- wbc->encountered_congestion = 1;
|
|
|
- _leave(" = 0 [congest]");
|
|
|
- return 0;
|
|
|
- }
|
|
|
-
|
|
|
if (wbc->range_cyclic) {
|
|
|
start = mapping->writeback_index;
|
|
|
end = -1;
|
|
|
ret = afs_writepages_region(mapping, wbc, start, end, &next);
|
|
|
- if (start > 0 && wbc->nr_to_write > 0 && ret == 0 &&
|
|
|
- !(wbc->nonblocking && wbc->encountered_congestion))
|
|
|
+ if (start > 0 && wbc->nr_to_write > 0 && ret == 0)
|
|
|
ret = afs_writepages_region(mapping, wbc, 0, start,
|
|
|
&next);
|
|
|
mapping->writeback_index = next;
|