From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id CEACEC43144 for ; Thu, 28 Jun 2018 19:40:47 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9438C278B0 for ; Thu, 28 Jun 2018 19:40:47 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 9438C278B0 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=linux-foundation.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934658AbeF1Tkp (ORCPT ); Thu, 28 Jun 2018 15:40:45 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:40836 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934012AbeF1Tkm (ORCPT ); Thu, 28 Jun 2018 15:40:42 -0400 Received: from localhost.localdomain (c-24-4-125-7.hsd1.ca.comcast.net [24.4.125.7]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id BE797E21; Thu, 28 Jun 2018 19:40:40 +0000 (UTC) Date: Thu, 28 Jun 2018 12:40:39 -0700 From: Andrew Morton To: Andrey Konovalov Cc: Andrey Ryabinin , Alexander Potapenko , Dmitry Vyukov , Catalin Marinas , Will Deacon , Christoph Lameter , Mark Rutland , Nick Desaulniers , Marc Zyngier , Dave Martin , Ard Biesheuvel , "Eric W . Biederman" , Ingo Molnar , Paul Lawrence , Geert Uytterhoeven , Arnd Bergmann , "Kirill A . Shutemov" , Greg Kroah-Hartman , Kate Stewart , Mike Rapoport , kasan-dev , linux-doc@vger.kernel.org, LKML , Linux ARM , linux-sparse@vger.kernel.org, Linux Memory Management List , Linux Kbuild mailing list , Kostya Serebryany , Evgeniy Stepanov , Lee Smith , Ramana Radhakrishnan , Jacob Bramley , Ruben Ayrapetyan , Jann Horn , Mark Brand , Chintan Pandya Subject: Re: [PATCH v4 00/17] khwasan: kernel hardware assisted address sanitizer Message-Id: <20180628124039.8a42ab5e2994fb2876ff4f75@linux-foundation.org> In-Reply-To: References: <20180627160800.3dc7f9ee41c0badbf7342520@linux-foundation.org> X-Mailer: Sylpheed 3.5.1 (GTK+ 2.24.31; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, 28 Jun 2018 20:29:07 +0200 Andrey Konovalov wrote: > >> Slab memory usage after boot [2]: > >> * ~40 kb for clean kernel > >> * ~105 kb + 1/8th shadow ~= 118 kb for KASAN > >> * ~47 kb + 1/16th shadow ~= 50 kb for KHWASAN > >> > >> Network performance [3]: > >> * 8.33 Gbits/sec for clean kernel > >> * 3.17 Gbits/sec for KASAN > >> * 2.85 Gbits/sec for KHWASAN > >> > >> Note, that KHWASAN (compared to KASAN) doesn't require quarantine. > >> > >> [1] Time before the ext4 driver is initialized. > >> [2] Measured as `cat /proc/meminfo | grep Slab`. > >> [3] Measured as `iperf -s & iperf -c 127.0.0.1 -t 30`. > > > > The above doesn't actually demonstrate the whole point of the > > patchset: to reduce KASAN's very high memory consumption? > > You mean that memory usage numbers collected after boot don't give a > representative picture of actual memory consumption on real workloads? > > What kind of memory consumption testing would you like to see? Well, 100kb or so is a teeny amount on virtually any machine. I'm assuming the savings are (much) more significant once the machine gets loaded up and doing work?