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=-5.2 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=no 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 9EDD0C4363D for ; Fri, 2 Oct 2020 18:01:47 +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 53952206A4 for ; Fri, 2 Oct 2020 18:01:47 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="r8p7QdEG" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 53952206A4 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:References:Message-ID: Subject:To:From:Date:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=j/lEHL/QkHk/n3QFAP8GgJCRVknbnCsY4+3q/TBzXO0=; b=r8p7QdEGsc4QZbe+PFg/jA4To se/kmHpNaRVkY3bb8xUpDZ8LNeP91yWe13bw6fQr9ADfP8qDDBc7PTt3+WM5e9DZhBvZbiMCA53xF fUhNWNTjembsva42eWa9I0efBta8ytzZiypElkXXYj4ffXHqDk7N53aEeAoVLxoKhiE7rQOBDcw2G dk6Dxli9s6LKo07wIOBiOD9tr4RR2TRu/jkT6astTq5xutjJXahj7yZjPjqd/7F6N1HFBeyD5c/N9 2ib9uzSQnmBX2gDuUP07++V8gLarU+H3O1FOdfdr1srDOY6XqExErt0UjXIivcWaAYpAqcLcc9aYT 4ASYEGT6A==; Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1kOPLy-0007tZ-GV; Fri, 02 Oct 2020 18:00:22 +0000 Received: from mail.kernel.org ([198.145.29.99]) by merlin.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1kOPLu-0007st-RC for linux-arm-kernel@lists.infradead.org; Fri, 02 Oct 2020 18:00:19 +0000 Received: from gaia (unknown [95.149.105.49]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 7D2FB206DD; Fri, 2 Oct 2020 18:00:16 +0000 (UTC) Date: Fri, 2 Oct 2020 19:00:14 +0100 From: Catalin Marinas To: Amit Daniel Kachhap Subject: Re: [PATCH v2 0/6] kselftest: arm64/mte: Tests for user-space MTE Message-ID: <20201002180013.GA6099@gaia> References: <20201002115630.24683-1-amit.kachhap@arm.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20201002115630.24683-1-amit.kachhap@arm.com> User-Agent: Mutt/1.10.1 (2018-07-13) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20201002_140018_943265_2606A704 X-CRM114-Status: GOOD ( 10.99 ) 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: Shuah Khan , linux-kernel@vger.kernel.org, Gabor Kertesz , linux-kselftest@vger.kernel.org, Vincenzo Frascino , Will Deacon , linux-arm-kernel@lists.infradead.org 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 Fri, Oct 02, 2020 at 05:26:24PM +0530, Amit Daniel Kachhap wrote: > Amit Daniel Kachhap (6): > kselftest/arm64: Add utilities and a test to validate mte memory > kselftest/arm64: Verify mte tag inclusion via prctl > kselftest/arm64: Check forked child mte memory accessibility > kselftest/arm64: Verify all different mmap MTE options > kselftest/arm64: Verify KSM page merge for MTE pages > kselftest/arm64: Check mte tagged user address in kernel Thanks Amit for respinning the series. Tested on FVP (some Qemu bugs get in the way and they fail). Acked-by: Catalin Marinas Tested-by: Catalin Marinas _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel