[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <491C8A6F.3000404@goop.org>
Date: Thu, 13 Nov 2008 12:13:35 -0800
From: Jeremy Fitzhardinge <jeremy@...p.org>
To: Johannes Weiner <hannes@...xchg.org>
CC: Andrew Morton <akpm@...ux-foundation.org>,
Nick Piggin <nickpiggin@...oo.com.au>,
Linux Memory Management List <linux-mm@...ck.org>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
"Pallipadi, Venkatesh" <venkatesh.pallipadi@...el.com>
Subject: [PATCH 3/2] mm/remap_pfn_range: restore missing flush
Restore the cache flush and BUG_ON removed in the conversion to using
apply_to_page_range().
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@...ix.com>
Cc: Johannes Weiner <hannes@...xchg.org>
---
mm/memory.c | 4 ++++
1 file changed, 4 insertions(+)
===================================================================
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -1484,6 +1484,8 @@
struct remap_data *rmd = data;
pte_t pte = pte_mkspecial(pfn_pte(rmd->pfn++, rmd->prot));
+ BUG_ON(!pte_none(*ptep));
+
set_pte_at(rmd->mm, addr, ptep, pte);
return 0;
@@ -1535,6 +1537,8 @@
BUG_ON(addr >= end);
+ flush_cache_range(vma, addr, end);
+
rmd.mm = mm;
rmd.pfn = pfn;
rmd.prot = prot;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists