From: Wolfgang Grandegger <wg@grandegger.com>
To: Gilles Chanteperdrix <gilles.chanteperdrix@xenomai.org>
Cc: "Xenomai@xenomai.org" <Xenomai@xenomai.org>
Subject: Re: [Xenomai] rtdm_iomap_to_user: fix caching and page fault issues
Date: Wed, 16 Jan 2013 08:37:30 +0100 [thread overview]
Message-ID: <50F658BA.7050107@grandegger.com> (raw)
In-Reply-To: <50F5B1FD.3040901@xenomai.org>
On 01/15/2013 08:46 PM, Gilles Chanteperdrix wrote:
> On 01/15/2013 04:22 PM, Wolfgang Grandegger wrote:
>
>> From: Wolfgang Grandegger <wg@denx.de>
>>
>> Pages mapped by rtdm_iomap_to_user() might be cached and may
>> page fault on the first write. At least that's the behaviour
>> we observed on an ARM mx6q system. This patch fixes these
>> issues.
>>
>> Signed-off-by: Wolfgang Grandegger <wg@denx.de>
>> ---
>> include/asm-generic/wrappers.h | 2 +-
>> ksrc/skins/rtdm/drvlib.c | 8 +++++---
>> 2 files changed, 6 insertions(+), 4 deletions(-)
>>
>> diff --git a/include/asm-generic/wrappers.h b/include/asm-generic/wrappers.h
>> index de1f0d7..e71bcc3 100644
>> --- a/include/asm-generic/wrappers.h
>> +++ b/include/asm-generic/wrappers.h
>> @@ -394,7 +394,7 @@ static inline void *kzalloc(size_t size, int flags)
>> #define wrap_remap_io_page_range(vma,from,to,size,prot) ({ \
>> (vma)->vm_page_prot = pgprot_noncached((vma)->vm_page_prot); \
Hm, here pgprot_noncached() is already used.
>> /* Sets VM_RESERVED | VM_IO | VM_PFNMAP on the vma. */ \
>> - remap_pfn_range(vma,from,(to) >> PAGE_SHIFT,size,prot); \
>> + remap_pfn_range(vma,from,(to) >> PAGE_SHIFT,size,pgprot_noncached(prot)); \
>
>
> Should not this be decided in the upper layers?
Upper layers? You mean calling xnarch_remap_io_page_range() with the
protection argument "pgprot_noncached(PAGE_SHARED)" in rtdm_mmap_buffer()?
Wolfgang.
>
next prev parent reply other threads:[~2013-01-16 7:37 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-15 15:22 [Xenomai] rtdm_iomap_to_user: fix caching and page fault issues Wolfgang Grandegger
2013-01-15 19:46 ` Gilles Chanteperdrix
2013-01-16 7:37 ` Wolfgang Grandegger [this message]
2013-01-16 8:22 ` Gilles Chanteperdrix
2013-09-27 9:25 ` Henri Roosen
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=50F658BA.7050107@grandegger.com \
--to=wg@grandegger.com \
--cc=Xenomai@xenomai.org \
--cc=gilles.chanteperdrix@xenomai.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.