From: Matt Fleming <matt@console-pimps.org>
To: linux-sh@vger.kernel.org
Subject: Re: Probably cache synchronization issue on SH7723
Date: Tue, 22 Dec 2009 16:51:50 +0000 [thread overview]
Message-ID: <20091222165150.GA7254@console-pimps.org> (raw)
In-Reply-To: <4B17B0D6.6020105@emtrion.de>
On Tue, Dec 22, 2009 at 05:18:16PM +0100, Pietrek, Markus wrote:
> Hi,
>
> Lacking some understanding of the caching system I'm not sure why in
> update_cache() some dirty pages are skipped. The following patch fixes
> my problem, but I'm not sure about any negative side effects.
Interesting! Good investigative work.
It's an optimisation so that we don't flush the dcache more than we need
to. There shouldn't be any negative side effects of your patch, it's
just a bit inefficient.
Having looked at the MIPS __update_cache() function I'm wondering if the
bug is that we should be flushing the cache if the page is executable.
Could you try this patch?
diff --git a/arch/sh/mm/cache.c b/arch/sh/mm/cache.c
index e9415d3..8460bbf 100644
--- a/arch/sh/mm/cache.c
+++ b/arch/sh/mm/cache.c
@@ -126,8 +126,9 @@ void __update_cache(struct vm_area_struct *vma,
{
struct page *page;
unsigned long pfn = pte_pfn(pte);
+ int exec = (vma->vm_flags & VM_EXEC);
- if (!boot_cpu_data.dcache.n_aliases)
+ if (!boot_cpu_data.dcache.n_aliases && !exec)
return;
page = pfn_to_page(pfn);
@@ -136,7 +137,7 @@ void __update_cache(struct vm_area_struct *vma,
if (dirty) {
unsigned long addr = (unsigned long)page_address(page);
- if (pages_do_alias(addr, address & PAGE_MASK))
+ if (exec || pages_do_alias(addr, address & PAGE_MASK))
__flush_purge_region((void *)addr, PAGE_SIZE);
}
}
next prev parent reply other threads:[~2009-12-22 16:51 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-12-03 12:36 Probably cache synchronization issue on SH7723 Markus Pietrek
2009-12-03 12:45 ` Magnus Damm
2009-12-04 6:47 ` Paul Mundt
2009-12-22 16:18 ` AW: " Pietrek, Markus
2009-12-22 16:51 ` Matt Fleming [this message]
2009-12-23 8:38 ` Pietrek, Markus
2009-12-23 23:33 ` Matt Fleming
2009-12-24 5:28 ` Paul Mundt
2009-12-24 9:50 ` AW: " Pietrek, Markus
2009-12-24 10:12 ` Paul Mundt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20091222165150.GA7254@console-pimps.org \
--to=matt@console-pimps.org \
--cc=linux-sh@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.