From: Leonid Yegoshin <Leonid.Yegoshin@imgtec.com>
To: Kevin Cernekee <cernekee@chromium.org>,
"Steven J. Hill" <Steven.Hill@imgtec.com>
Cc: IMG - MIPS Linux Kernel developers
<IMG-MIPSLinuxKerneldevelopers@imgtec.com>,
Linux MIPS Mailing List <linux-mips@linux-mips.org>
Subject: Re: [PATCH V2 1/3] MIPS: Fix cache flushing for swap pages with non-DMA I/O.
Date: Mon, 23 Feb 2015 16:56:24 -0800 [thread overview]
Message-ID: <54EBCC38.7000702@imgtec.com> (raw)
In-Reply-To: <CAJiQ=7DMBznB5Ths0sAZORf2hgSQRuBoPF-7HGHhcHn0EajnWg@mail.gmail.com>
On 02/20/2015 11:17 AM, Kevin Cernekee wrote:
> On Thu, Feb 19, 2015 at 8:17 AM, Steven J. Hill <Steven.Hill@imgtec.com> wrote:
>> From: Leonid Yegoshin <Leonid.Yegoshin@imgtec.com>
>>
>> Flush the D-cache before the page is given to a process
>> as an executable (I-cache) page when the backing store
>> is non-DMA I/O.
>>
>> Signed-off-by: Leonid Yegoshin <Leonid.Yegoshin@imgtec.com>
>> Signed-off-by: Steven J. Hill <Steven.Hill@imgtec.com>
> This patch seems to make several different changes to the cache
> maintenance code all at once:
>
> 1) Add logic to handle virtually tagged D$
This is needed for 74K/1074K erratas. It is somehow was split from
006a851b10a395955c153a145ad8241494d43688 which was accepted upstream but
erratas not go through.
The HW behaviour is similar to virtually tagged D$ but it is a HW bug.
> and perform extra flushes
> on TLB updates
As I understand, it is about adding __update_cache() in
update_mmu_cache(), right?
If so, then - this code exists from the first git version of kernel from
Mr. Linus.
It was deleted by mistake, I think.
>
> 2) Add new write barriers betwen D$/I$ or D$/L2 flushes
It is required. MIPS32/64 R2 specs say:
> "For implementations which implement multiple level of caches without
> the inclusion property, the use of a SYNC
> instruction after the CACHE instruction is still needed whenever
> writeback data has to be resident in the next level of
> memory hierarchy."
So, if we need to transfer instruction from D$ to L2 then we should use
SYNC after CACHE D$ before operates with this data in L2. In other case
the CACHE for L2 may go ahead of completion of D$ for the same line and
flush a stale data.
The same is basically for transfer D$ --> I$ because in MIPS it is done
via L2 or memory.
>
> 3) Make __flush_anon_page() play nice with HIGHMEM on systems with cache aliases
>
> and maybe a few more that I missed.
4) It is basically a revert of patch 64f23ab30b1fe which kills a
performance in non Cavium Octeon CPUs, actually - any CPU which has no
D$ cache snooping in I$.
But just revert is incorrect, the another proper stuff is required for
correct operations.
>
> Would it be possible to split this out into individual commits, and
> include more comprehensive changelogs for each one describing the
> exact problem being solved?
I would ask Steven to do it. The original code dates back to 2.6.32 and
it was packed/split in different patches multiple times. After a lot of
split/join following patch acceptance/rejection we have what we have now.
In my opinion, the process of splitting into individual commits are
something wrong - some patches are accepted and some - not, and we have
a buggy code now. It should be packed into functional patches but each
patch should be a single workable commit. If multiple patches are needed
to fix a problem then result is sometime wrong.
>
> Also, it would be helpful to clarify how this relates to the use of
> swap (?) with a backing store that is non-DMA I/O. Do you have an
> example of a situation where the existing code broke? A play-by-play
> postmortem would make for interesting reading.
I guess, it is a little incorrect - this code is REQUIRED for non-DMA
I/O with root FS or swap but it is not enough. Another patch is still
needed to complete, see http://patchwork.linux-mips.org/patch/8635/
- Leonid.
next prev parent reply other threads:[~2015-02-24 0:56 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-19 16:17 [PATCH V2 0/3] HIGHMEM and cache flush fixes Steven J. Hill
2015-02-19 16:17 ` Steven J. Hill
2015-02-19 16:17 ` [PATCH V2 1/3] MIPS: Fix cache flushing for swap pages with non-DMA I/O Steven J. Hill
2015-02-19 16:17 ` Steven J. Hill
2015-02-20 19:17 ` Kevin Cernekee
2015-02-24 0:56 ` Leonid Yegoshin [this message]
2015-02-24 0:56 ` Leonid Yegoshin
2015-02-24 1:13 ` Zenon Fortuna
2015-02-24 1:13 ` Zenon Fortuna
2015-02-24 2:33 ` Maciej W. Rozycki
2015-02-24 2:33 ` Maciej W. Rozycki
2015-02-24 21:06 ` Leonid Yegoshin
2015-02-24 21:06 ` Leonid Yegoshin
2015-02-24 21:51 ` Maciej W. Rozycki
2015-02-24 21:51 ` Maciej W. Rozycki
2015-02-24 21:57 ` Leonid Yegoshin
2015-02-24 21:57 ` Leonid Yegoshin
2015-02-24 22:50 ` Maciej W. Rozycki
2015-02-24 22:50 ` Maciej W. Rozycki
2015-02-24 22:57 ` David Daney
2015-02-24 22:57 ` David Daney
2015-02-24 23:19 ` Leonid Yegoshin
2015-02-24 23:19 ` Leonid Yegoshin
2015-02-24 23:58 ` David Daney
2015-02-24 23:58 ` David Daney
2015-02-25 0:07 ` Maciej W. Rozycki
2015-02-25 0:07 ` Maciej W. Rozycki
2015-02-25 0:38 ` David Daney
2015-02-25 0:38 ` David Daney
2015-02-24 23:15 ` Leonid Yegoshin
2015-02-24 23:15 ` Leonid Yegoshin
2015-02-24 2:24 ` Maciej W. Rozycki
2015-02-24 2:24 ` Maciej W. Rozycki
2015-02-24 16:20 ` Steven J. Hill
2015-02-19 16:17 ` [PATCH V2 2/3] MIPS: Highmem: Fixes for cache aliasing and color Steven J. Hill
2015-02-19 16:17 ` Steven J. Hill
2015-02-19 16:17 ` [PATCH V2 3/3] MIPS: Fix I-cache flushing for kmap'd pages Steven J. Hill
2015-02-19 16:17 ` Steven J. Hill
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=54EBCC38.7000702@imgtec.com \
--to=leonid.yegoshin@imgtec.com \
--cc=IMG-MIPSLinuxKerneldevelopers@imgtec.com \
--cc=Steven.Hill@imgtec.com \
--cc=cernekee@chromium.org \
--cc=linux-mips@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