Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 230721
b: refs/heads/master
c: 212260a
h: refs/heads/master
i:
  230719: fdd8e45
v: v3
  • Loading branch information
Rik van Riel authored and Linus Torvalds committed Jan 14, 2011
1 parent ffede8d commit 873918d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: dabb16f639820267b3850d804571c70bd93d4e07
refs/heads/master: 212260aa07135b327752dc02625c68cf4ce04caf
2 changes: 1 addition & 1 deletion trunk/include/linux/page-flags.h
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ static inline int __TestClearPage##uname(struct page *page) { return 0; }
struct page; /* forward declaration */

TESTPAGEFLAG(Locked, locked) TESTSETFLAG(Locked, locked)
PAGEFLAG(Error, error)
PAGEFLAG(Error, error) TESTCLEARFLAG(Error, error)
PAGEFLAG(Referenced, referenced) TESTCLEARFLAG(Referenced, referenced)
PAGEFLAG(Dirty, dirty) TESTSCFLAG(Dirty, dirty) __CLEARPAGEFLAG(Dirty, dirty)
PAGEFLAG(LRU, lru) __CLEARPAGEFLAG(LRU, lru)
Expand Down
2 changes: 1 addition & 1 deletion trunk/mm/filemap.c
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ int filemap_fdatawait_range(struct address_space *mapping, loff_t start_byte,
continue;

wait_on_page_writeback(page);
if (PageError(page))
if (TestClearPageError(page))
ret = -EIO;
}
pagevec_release(&pvec);
Expand Down

0 comments on commit 873918d

Please sign in to comment.