diff options
| author | David S. Miller <davem@davemloft.net> | 2009-10-12 06:20:57 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2009-10-12 06:20:57 -0400 |
| commit | 1a78cedb998027ed46d8630b319db8fa678d38f0 (patch) | |
| tree | 4069a8517b0f2f4255e8af2f60000e791268303c | |
| parent | de23cf3c42618998a7165364f987267ac9b298f0 (diff) | |
sparc64: Fix D-cache flushing on swapin from SW devices.
Thanks to tip form ARM folks and Russell King.
If flush_dcache_page() occurs on a swapin it will have a mapping
and we'll try to defer the flush by setting the dirty bit.
But when it hits update_dcache_page() we won't flush because the
page won't have a mapping any more. So remove the mapping
requirement in flush_dcache().
Signed-off-by: David S. Miller <davem@davemloft.net>
| -rw-r--r-- | arch/sparc/mm/init_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/mm/init_64.c b/arch/sparc/mm/init_64.c index a70a5e1904d9..1886d37d411b 100644 --- a/arch/sparc/mm/init_64.c +++ b/arch/sparc/mm/init_64.c | |||
| @@ -265,7 +265,7 @@ static void flush_dcache(unsigned long pfn) | |||
| 265 | struct page *page; | 265 | struct page *page; |
| 266 | 266 | ||
| 267 | page = pfn_to_page(pfn); | 267 | page = pfn_to_page(pfn); |
| 268 | if (page && page_mapping(page)) { | 268 | if (page) { |
| 269 | unsigned long pg_flags; | 269 | unsigned long pg_flags; |
| 270 | 270 | ||
| 271 | pg_flags = page->flags; | 271 | pg_flags = page->flags; |
