From: Russell King - ARM Linux <linux@arm.linux.org.uk>
To: Ralf Baechle <ralf@linux-mips.org>
Cc: Nick Piggin <nickpiggin@yahoo.com.au>,
Dmitry Adamushko <dmitry.adamushko@gmail.com>,
linux-fsdevel@vger.kernel.org, Naval Saini <navalnovel@gmail.com>,
linux-arch@vger.kernel.org,
linux-arm-kernel@lists.arm.linux.org.uk,
linux-kernel@vger.kernel.org, naval.saini@nxp.com
Subject: Re: O_DIRECT patch for processors with VIPT cache for mainline kernel (specifically arm in our case)
Date: Thu, 20 Nov 2008 16:30:53 +0000 [thread overview]
Message-ID: <20081120163052.GA5385@flint.arm.linux.org.uk> (raw)
In-Reply-To: <20081120135558.GB24308@linux-mips.org>
On Thu, Nov 20, 2008 at 01:55:58PM +0000, Ralf Baechle wrote:
> It's better to avoid aliases than dealing with them by flushing. A way to
> avoid aliases whenever a page is mapped to userspace, one creates a mapping
> at a carefully choosen address that doesn't alias. On architectures with
> software reload TLBs such as MIPS that's very cheap and the entire
> cacheflush with all it's associated pains can go away. Right now MIPS uses
> such a mechanism:
>
> void *kmap_coherent(struct page *page, unsigned long addr);
> void kunmap_coherent(void);
Yes, we effectively already do that for our copy_user_highpage/
clear_user_highpage (note: we really want to override both of those
functions, not just one as the code in include/linux/highmem.h is
currently setup. And I wish that V4L didn't use the non-highmem
clear_user_page() call...)
Why? On ARM, we're starting to support highmem on VIVT and VIPT, and
having *_user_highpage() kmap, and then have the *_user_page() setup
yet another mapping for VIPT caches is just silly.
Which reminds me that I need to get a patch to make clear_user_highpage()
overridable out on the relevent lists...
> within the architecture private implementation but it could be use beyond
> that, probably on all architectures though I know that there would be some
> solvable issues on PARISC. Lightweight, no ordering constraints between
> kernel and userspace accesses, so also no locking needed.
The "no locking needed" depends. If we're going to be asking drivers
to copy use such an interface in order to copy data into page cache
pages, you can't have two drivers calling it from interrupt context
without some form of locking.
Nor if you're SMP and you don't have the mappings setup per-CPU.
However, as davem has said in the past, the result of a device reading
or writing the page cache should result in the same conditions no
matter how the read or write is actually done. That's only common
sense. So ensuring that device PIO accesses are done with the same
cache colour as userspace results in a difference between PIO and DMA,
one which could potentially bite if we end up reading from the kernel
mapping of those pages first.
If we extend the argument that "everything must be the same cache colour"
then we need cache colouring when allocating page cache pages - since
page cache pages are part of the kernel direct mapped memory, their
colour is already fixed from the time that you've setup the initial
kernel memory mappings. In ARMs case of an aliasing VIPT cache, that
means that VA [13:12] must equal PA [13:12] for every single mapping
no matter where...
That would be nice, since we don't then have to worry about aliases
between kernel and userspace anymore, so we don't have to play these
remapping games in kernel space. ;)
-------------------------------------------------------------------
List admin: http://lists.arm.linux.org.uk/mailman/listinfo/linux-arm-kernel
FAQ: http://www.arm.linux.org.uk/mailinglists/faq.php
Etiquette: http://www.arm.linux.org.uk/mailinglists/etiquette.php
next prev parent reply other threads:[~2008-11-20 16:30 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <d8dd82df0811180606w503563ach8650ab07dcd0a35c@mail.gmail.com>
[not found] ` <200811191740.23638.nickpiggin@yahoo.com.au>
[not found] ` <20081119204315.GB17209@flint.arm.linux.org.uk>
2008-11-20 6:59 ` O_DIRECT patch for processors with VIPT cache for mainline kernel (specifically arm in our case) Nick Piggin
2008-11-20 9:19 ` Russell King - ARM Linux
2008-11-20 10:55 ` Naval Saini
2008-11-21 17:10 ` Catalin Marinas
2008-11-20 12:28 ` Dmitry Adamushko
2008-11-20 13:25 ` Nick Piggin
2008-11-20 13:55 ` Ralf Baechle
2008-11-20 15:27 ` Matthew Wilcox
2008-11-20 17:17 ` Ralf Baechle
2008-11-20 17:40 ` Matthew Wilcox
2008-11-20 19:30 ` Russell King - ARM Linux
2008-11-20 16:30 ` Russell King - ARM Linux [this message]
2008-11-20 13:59 ` Dmitry Adamushko
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=20081120163052.GA5385@flint.arm.linux.org.uk \
--to=linux@arm.linux.org.uk \
--cc=dmitry.adamushko@gmail.com \
--cc=linux-arch@vger.kernel.org \
--cc=linux-arm-kernel@lists.arm.linux.org.uk \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=naval.saini@nxp.com \
--cc=navalnovel@gmail.com \
--cc=nickpiggin@yahoo.com.au \
--cc=ralf@linux-mips.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).