mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
Staging: ramzswap: remove ARM specific d-cache hack
Remove d-cache hack in ramzswap driver that was needed
to workaround a bug in ARM version of update_mmu_cache()
which caused stale data in d-cache to be transferred to
userspace. This bug was fixed by git commit:
787b2faadc
This also brings down one entry in TODO file.
Signed-off-by: Nitin Gupta <ngupta@vflare.org>
Acked-by: Pekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
3d8affc001
commit
30fb8a7141
2 changed files with 3 additions and 26 deletions
|
@ -1,6 +1,5 @@
|
||||||
TODO:
|
TODO:
|
||||||
- Add support for swap notifiers
|
- Add support for swap notifiers
|
||||||
- Remove CONFIG_ARM hack
|
|
||||||
|
|
||||||
Please send patches to Greg Kroah-Hartman <greg@kroah.com> and
|
Please send patches to Greg Kroah-Hartman <greg@kroah.com> and
|
||||||
Nitin Gupta <ngupta@vflare.org>
|
Nitin Gupta <ngupta@vflare.org>
|
||||||
|
|
|
@ -222,28 +222,6 @@ out:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ramzswap_flush_dcache_page(struct page *page)
|
|
||||||
{
|
|
||||||
#ifdef CONFIG_ARM
|
|
||||||
int flag = 0;
|
|
||||||
/*
|
|
||||||
* Ugly hack to get flush_dcache_page() work on ARM.
|
|
||||||
* page_mapping(page) == NULL after clearing this swap cache flag.
|
|
||||||
* Without clearing this flag, flush_dcache_page() will simply set
|
|
||||||
* "PG_dcache_dirty" bit and return.
|
|
||||||
*/
|
|
||||||
if (PageSwapCache(page)) {
|
|
||||||
flag = 1;
|
|
||||||
ClearPageSwapCache(page);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
flush_dcache_page(page);
|
|
||||||
#ifdef CONFIG_ARM
|
|
||||||
if (flag)
|
|
||||||
SetPageSwapCache(page);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
void ramzswap_ioctl_get_stats(struct ramzswap *rzs,
|
void ramzswap_ioctl_get_stats(struct ramzswap *rzs,
|
||||||
struct ramzswap_ioctl_stats *s)
|
struct ramzswap_ioctl_stats *s)
|
||||||
{
|
{
|
||||||
|
@ -655,7 +633,7 @@ static int handle_zero_page(struct bio *bio)
|
||||||
memset(user_mem, 0, PAGE_SIZE);
|
memset(user_mem, 0, PAGE_SIZE);
|
||||||
kunmap_atomic(user_mem, KM_USER0);
|
kunmap_atomic(user_mem, KM_USER0);
|
||||||
|
|
||||||
ramzswap_flush_dcache_page(page);
|
flush_dcache_page(page);
|
||||||
|
|
||||||
set_bit(BIO_UPTODATE, &bio->bi_flags);
|
set_bit(BIO_UPTODATE, &bio->bi_flags);
|
||||||
bio_endio(bio, 0);
|
bio_endio(bio, 0);
|
||||||
|
@ -679,7 +657,7 @@ static int handle_uncompressed_page(struct ramzswap *rzs, struct bio *bio)
|
||||||
kunmap_atomic(user_mem, KM_USER0);
|
kunmap_atomic(user_mem, KM_USER0);
|
||||||
kunmap_atomic(cmem, KM_USER1);
|
kunmap_atomic(cmem, KM_USER1);
|
||||||
|
|
||||||
ramzswap_flush_dcache_page(page);
|
flush_dcache_page(page);
|
||||||
|
|
||||||
set_bit(BIO_UPTODATE, &bio->bi_flags);
|
set_bit(BIO_UPTODATE, &bio->bi_flags);
|
||||||
bio_endio(bio, 0);
|
bio_endio(bio, 0);
|
||||||
|
@ -779,7 +757,7 @@ static int ramzswap_read(struct ramzswap *rzs, struct bio *bio)
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
ramzswap_flush_dcache_page(page);
|
flush_dcache_page(page);
|
||||||
|
|
||||||
set_bit(BIO_UPTODATE, &bio->bi_flags);
|
set_bit(BIO_UPTODATE, &bio->bi_flags);
|
||||||
bio_endio(bio, 0);
|
bio_endio(bio, 0);
|
||||||
|
|
Loading…
Reference in a new issue