[PATCH 5/5] md: add cpu cache flushes after kmapping and modifying a page

From: Tejun Heo
Date: Sat Jun 03 2006 - 23:41:49 EST


Add calls to flush_kernel_dcache_page() after CPU has kmapped and
modified a page. This fixes PIO cache coherency bugs on architectures
with aliased caches.

Signed-off-by: Tejun Heo <htejun@xxxxxxxxx>

---

drivers/md/raid1.c | 1 +
drivers/md/raid5.c | 6 ++++--
drivers/md/raid6main.c | 6 ++++--
3 files changed, 9 insertions(+), 4 deletions(-)

716500bdf7de6acb87e36c8146d83dd3c429bc82
diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c
index 4070eff..30ca7cf 100644
--- a/drivers/md/raid1.c
+++ b/drivers/md/raid1.c
@@ -720,6 +720,7 @@ static struct page **alloc_behind_pages(
goto do_sync_io;
memcpy(kmap(pages[i]) + bvec->bv_offset,
kmap(bvec->bv_page) + bvec->bv_offset, bvec->bv_len);
+ flush_kernel_dcache_page(pages[i]);
kunmap(pages[i]);
kunmap(bvec->bv_page);
}
diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c
index 3184360..3adb64f 100644
--- a/drivers/md/raid5.c
+++ b/drivers/md/raid5.c
@@ -813,10 +813,12 @@ static void copy_data(int frombio, struc

if (clen > 0) {
char *ba = __bio_kmap_atomic(bio, i, KM_USER0);
- if (frombio)
+ if (frombio) {
memcpy(pa+page_offset, ba+b_offset, clen);
- else
+ } else {
memcpy(ba+b_offset, pa+page_offset, clen);
+ flush_kernel_dcache_page(kmap_atomic_to_page(ba));
+ }
__bio_kunmap_atomic(ba, KM_USER0);
}
if (clen < len) /* hit end of page */
diff --git a/drivers/md/raid6main.c b/drivers/md/raid6main.c
index bc69355..b9700bd 100644
--- a/drivers/md/raid6main.c
+++ b/drivers/md/raid6main.c
@@ -727,10 +727,12 @@ static void copy_data(int frombio, struc

if (clen > 0) {
char *ba = __bio_kmap_atomic(bio, i, KM_USER0);
- if (frombio)
+ if (frombio) {
memcpy(pa+page_offset, ba+b_offset, clen);
- else
+ } else {
memcpy(ba+b_offset, pa+page_offset, clen);
+ flush_kernel_dcache_page(kmap_atomic_to_page(ba));
+ }
__bio_kunmap_atomic(ba, KM_USER0);
}
if (clen < len) /* hit end of page */
--
1.3.2


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/