1
0
Fork 0

sh: Add a PG_dcache_dirty sanity check in kmap_coherent().

This plugs in a BUG_ON() in kmap_coherent() for PG_dcache_dirty pages
to catch when things go horribly wrong. Copied from the MIPS
implementation.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
wifi-calibration
Paul Mundt 2009-08-04 15:57:44 +09:00
parent 3ed6e12939
commit 700487c158
1 changed files with 2 additions and 0 deletions

View File

@ -37,6 +37,8 @@ static inline void *kmap_coherent(struct page *page, unsigned long addr)
unsigned long vaddr, flags;
pte_t pte;
BUG_ON(test_bit(PG_dcache_dirty, &page->flags));
inc_preempt_count();
idx = (addr & current_cpu_data.dcache.alias_mask) >> PAGE_SHIFT;