lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Wed, 25 May 2022 10:03:53 +0200
From:   Geert Uytterhoeven <geert@...ux-m68k.org>
To:     Peter Xu <peterx@...hat.com>
Cc:     Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
        Linux MM <linux-mm@...ck.org>,
        Richard Henderson <rth@...ddle.net>,
        David Hildenbrand <david@...hat.com>,
        Matt Turner <mattst88@...il.com>,
        Albert Ou <aou@...s.berkeley.edu>,
        Michal Simek <monstr@...str.eu>,
        Russell King <linux@...linux.org.uk>,
        Ivan Kokshaysky <ink@...assic.park.msu.ru>,
        linux-riscv <linux-riscv@...ts.infradead.org>,
        Alexander Gordeev <agordeev@...ux.ibm.com>,
        Dave Hansen <dave.hansen@...ux.intel.com>,
        Jonas Bonn <jonas@...thpole.se>, Will Deacon <will@...nel.org>,
        "James E . J . Bottomley" <James.Bottomley@...senpartnership.com>,
        "H . Peter Anvin" <hpa@...or.com>,
        Andrea Arcangeli <aarcange@...hat.com>,
        openrisc@...ts.librecores.org, linux-s390@...r.kernel.org,
        Ingo Molnar <mingo@...hat.com>,
        linux-m68k@...ts.linux-m68k.org,
        Palmer Dabbelt <palmer@...belt.com>,
        Heiko Carstens <hca@...ux.ibm.com>,
        Chris Zankel <chris@...kel.net>,
        Peter Zijlstra <peterz@...radead.org>,
        Alistair Popple <apopple@...dia.com>,
        linux-csky@...r.kernel.org, linux-hexagon@...r.kernel.org,
        Vlastimil Babka <vbabka@...e.cz>,
        Thomas Gleixner <tglx@...utronix.de>,
        sparclinux@...r.kernel.org,
        Christian Borntraeger <borntraeger@...ux.ibm.com>,
        Stafford Horne <shorne@...il.com>,
        Michael Ellerman <mpe@...erman.id.au>, x86@...nel.org,
        Thomas Bogendoerfer <tsbogend@...ha.franken.de>,
        Paul Mackerras <paulus@...ba.org>,
        linux-arm-kernel@...ts.infradead.org,
        Sven Schnelle <svens@...ux.ibm.com>,
        Benjamin Herrenschmidt <benh@...nel.crashing.org>,
        linux-xtensa@...ux-xtensa.org, Nicholas Piggin <npiggin@...il.com>,
        linux-sh@...r.kernel.org, Vasily Gorbik <gor@...ux.ibm.com>,
        Borislav Petkov <bp@...en8.de>, linux-mips@...r.kernel.org,
        Max Filippov <jcmvbkbc@...il.com>,
        Helge Deller <deller@....de>, Vineet Gupta <vgupta@...nel.org>,
        Al Viro <viro@...iv.linux.org.uk>,
        Paul Walmsley <paul.walmsley@...ive.com>,
        Johannes Weiner <hannes@...xchg.org>,
        Anton Ivanov <anton.ivanov@...bridgegreys.com>,
        Catalin Marinas <catalin.marinas@....com>,
        linux-um@...ts.infradead.org, linux-alpha@...r.kernel.org,
        Johannes Berg <johannes@...solutions.net>,
        linux-ia64@...r.kernel.org, Dinh Nguyen <dinguyen@...nel.org>,
        Guo Ren <guoren@...nel.org>,
        linux-snps-arc@...ts.infradead.org,
        Hugh Dickins <hughd@...gle.com>, Rich Felker <dalias@...c.org>,
        Andy Lutomirski <luto@...nel.org>,
        Richard Weinberger <richard@....at>,
        linuxppc-dev@...ts.ozlabs.org, Brian Cain <bcain@...cinc.com>,
        Yoshinori Sato <ysato@...rs.sourceforge.jp>,
        Andrew Morton <akpm@...ux-foundation.org>,
        Stefan Kristiansson <stefan.kristiansson@...nalahti.fi>,
        linux-parisc@...r.kernel.org,
        "David S . Miller" <davem@...emloft.net>
Subject: Re: [PATCH v3] mm: Avoid unnecessary page fault retires on shared
 memory types

On Wed, May 25, 2022 at 1:45 AM Peter Xu <peterx@...hat.com> wrote:
> I observed that for each of the shared file-backed page faults, we're very
> likely to retry one more time for the 1st write fault upon no page.  It's
> because we'll need to release the mmap lock for dirty rate limit purpose
> with balance_dirty_pages_ratelimited() (in fault_dirty_shared_page()).
>
> Then after that throttling we return VM_FAULT_RETRY.
>
> We did that probably because VM_FAULT_RETRY is the only way we can return
> to the fault handler at that time telling it we've released the mmap lock.
>
> However that's not ideal because it's very likely the fault does not need
> to be retried at all since the pgtable was well installed before the
> throttling, so the next continuous fault (including taking mmap read lock,
> walk the pgtable, etc.) could be in most cases unnecessary.
>
> It's not only slowing down page faults for shared file-backed, but also add
> more mmap lock contention which is in most cases not needed at all.
>
> To observe this, one could try to write to some shmem page and look at
> "pgfault" value in /proc/vmstat, then we should expect 2 counts for each
> shmem write simply because we retried, and vm event "pgfault" will capture
> that.
>
> To make it more efficient, add a new VM_FAULT_COMPLETED return code just to
> show that we've completed the whole fault and released the lock.  It's also
> a hint that we should very possibly not need another fault immediately on
> this page because we've just completed it.
>
> This patch provides a ~12% perf boost on my aarch64 test VM with a simple
> program sequentially dirtying 400MB shmem file being mmap()ed and these are
> the time it needs:
>
>   Before: 650.980 ms (+-1.94%)
>   After:  569.396 ms (+-1.38%)
>
> I believe it could help more than that.
>
> We need some special care on GUP and the s390 pgfault handler (for gmap
> code before returning from pgfault), the rest changes in the page fault
> handlers should be relatively straightforward.
>
> Another thing to mention is that mm_account_fault() does take this new
> fault as a generic fault to be accounted, unlike VM_FAULT_RETRY.
>
> I explicitly didn't touch hmm_vma_fault() and break_ksm() because they do
> not handle VM_FAULT_RETRY even with existing code, so I'm literally keeping
> them as-is.
>
> Signed-off-by: Peter Xu <peterx@...hat.com>

>  arch/m68k/mm/fault.c          |  4 ++++

Acked-by: Geert Uytterhoeven <geert@...ux-m68k.org>

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@...ux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ