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=-15.3 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_SANE_1 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 20790C433DB for ; Sat, 30 Jan 2021 16:59:01 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id CE88564D9F for ; Sat, 30 Jan 2021 16:59:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231303AbhA3Q6o (ORCPT ); Sat, 30 Jan 2021 11:58:44 -0500 Received: from foss.arm.com ([217.140.110.172]:38484 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230045AbhA3Q6n (ORCPT ); Sat, 30 Jan 2021 11:58:43 -0500 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id B6BCB1042; Sat, 30 Jan 2021 08:57:57 -0800 (PST) Received: from [10.37.8.6] (unknown [10.37.8.6]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id F0B243F73D; Sat, 30 Jan 2021 08:57:54 -0800 (PST) Subject: Re: [PATCH v11 5/5] kasan: don't run tests in async mode To: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, kasan-dev@googlegroups.com Cc: Andrew Morton , Catalin Marinas , Will Deacon , Dmitry Vyukov , Andrey Ryabinin , Alexander Potapenko , Marco Elver , Evgenii Stepanov , Branislav Rankov , Andrey Konovalov References: <20210130165225.54047-1-vincenzo.frascino@arm.com> <20210130165225.54047-6-vincenzo.frascino@arm.com> From: Vincenzo Frascino Message-ID: Date: Sat, 30 Jan 2021 17:01:48 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: <20210130165225.54047-6-vincenzo.frascino@arm.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 1/30/21 4:52 PM, Vincenzo Frascino wrote: > From: Andrey Konovalov > > Asynchronous KASAN mode doesn't guarantee that a tag fault will be > detected immediately and causes tests to fail. Forbid running them > in asynchronous mode. > > Signed-off-by: Andrey Konovalov Reviewed-by: Vincenzo Frascino With: [ 18.283644] 1..1 [ 18.284167] # Subtest: kasan [ 18.284444] 1..45 [ 18.295536] # kmalloc_oob_right: can't run KASAN tests in async mode [ 18.296873] # kmalloc_oob_right: failed to initialize: -1 [ 18.303714] not ok 1 - kmalloc_oob_right [ 18.316439] # kmalloc_oob_left: can't run KASAN tests in async mode [ 18.319466] # kmalloc_oob_left: failed to initialize: -1 [ 18.325001] not ok 2 - kmalloc_oob_left Tested-by: Vincenzo Frascino > --- > lib/test_kasan.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/lib/test_kasan.c b/lib/test_kasan.c > index 7285dcf9fcc1..f82d9630cae1 100644 > --- a/lib/test_kasan.c > +++ b/lib/test_kasan.c > @@ -51,6 +51,10 @@ static int kasan_test_init(struct kunit *test) > kunit_err(test, "can't run KASAN tests with KASAN disabled"); > return -1; > } > + if (kasan_flag_async) { > + kunit_err(test, "can't run KASAN tests in async mode"); > + return -1; > + } > > multishot = kasan_save_enable_multi_shot(); > hw_set_tagging_report_once(false); > -- Regards, Vincenzo 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=-15.5 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_SANE_1 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 744EAC433E0 for ; Sat, 30 Jan 2021 16:59:10 +0000 (UTC) Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 2FD4C64E06 for ; Sat, 30 Jan 2021 16:59:10 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 2FD4C64E06 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=arm.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=merlin.20170209; h=Sender:Content-Transfer-Encoding: Content-Type:Cc:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:Date:Message-ID:From: References:To:Subject:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=6ragFeluO+fpPwwVsCm13PzrXLNzOdRczwbG4krnovA=; b=pVgbD/63cOSc7IG59aO6ys8Cb OqzHiBF3UZoKfL9BzPA39gLf6rJ3YrGoeRANCxlar2VcnzKAFWfhbEdeFz9ungkUpUrTY9FIowr1e ruEPoxCVpOFuPbH+u9npdXq0NPdh27ssf5TOCFh/kUjSWma1FNSsZFKnpZrL0nxwPAQoRJv4jnHSI vNY3ngGx0Z7GmtwJirntdxPGlnry14fYJGOBL2c61G+CMEyYcYwYXJk93FHLItpYHq2h4aHtwBJrX +S1RqONM4KRcrtQW4QArEawNrKjUSiTqIj/9cL6I1pmopZUurXWtMkryQvXbFsmoR03Kf3whP8Gqy 1O4ipxO2A==; Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1l5tZR-0003Mg-GN; Sat, 30 Jan 2021 16:58:01 +0000 Received: from foss.arm.com ([217.140.110.172]) by merlin.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1l5tZP-0003Ln-2R for linux-arm-kernel@lists.infradead.org; Sat, 30 Jan 2021 16:57:59 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id B6BCB1042; Sat, 30 Jan 2021 08:57:57 -0800 (PST) Received: from [10.37.8.6] (unknown [10.37.8.6]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id F0B243F73D; Sat, 30 Jan 2021 08:57:54 -0800 (PST) Subject: Re: [PATCH v11 5/5] kasan: don't run tests in async mode To: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, kasan-dev@googlegroups.com References: <20210130165225.54047-1-vincenzo.frascino@arm.com> <20210130165225.54047-6-vincenzo.frascino@arm.com> From: Vincenzo Frascino Message-ID: Date: Sat, 30 Jan 2021 17:01:48 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: <20210130165225.54047-6-vincenzo.frascino@arm.com> Content-Language: en-US X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210130_115759_177735_3C3BF05B X-CRM114-Status: GOOD ( 17.23 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Marco Elver , Catalin Marinas , Branislav Rankov , Alexander Potapenko , Evgenii Stepanov , Andrey Konovalov , Andrey Ryabinin , Andrew Morton , Will Deacon , Dmitry Vyukov Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On 1/30/21 4:52 PM, Vincenzo Frascino wrote: > From: Andrey Konovalov > > Asynchronous KASAN mode doesn't guarantee that a tag fault will be > detected immediately and causes tests to fail. Forbid running them > in asynchronous mode. > > Signed-off-by: Andrey Konovalov Reviewed-by: Vincenzo Frascino With: [ 18.283644] 1..1 [ 18.284167] # Subtest: kasan [ 18.284444] 1..45 [ 18.295536] # kmalloc_oob_right: can't run KASAN tests in async mode [ 18.296873] # kmalloc_oob_right: failed to initialize: -1 [ 18.303714] not ok 1 - kmalloc_oob_right [ 18.316439] # kmalloc_oob_left: can't run KASAN tests in async mode [ 18.319466] # kmalloc_oob_left: failed to initialize: -1 [ 18.325001] not ok 2 - kmalloc_oob_left Tested-by: Vincenzo Frascino > --- > lib/test_kasan.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/lib/test_kasan.c b/lib/test_kasan.c > index 7285dcf9fcc1..f82d9630cae1 100644 > --- a/lib/test_kasan.c > +++ b/lib/test_kasan.c > @@ -51,6 +51,10 @@ static int kasan_test_init(struct kunit *test) > kunit_err(test, "can't run KASAN tests with KASAN disabled"); > return -1; > } > + if (kasan_flag_async) { > + kunit_err(test, "can't run KASAN tests in async mode"); > + return -1; > + } > > multishot = kasan_save_enable_multi_shot(); > hw_set_tagging_report_once(false); > -- Regards, Vincenzo _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel