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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5CE7AC433FE for ; Tue, 31 May 2022 18:40:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1347068AbiEaSk1 (ORCPT ); Tue, 31 May 2022 14:40:27 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48684 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234460AbiEaSkZ (ORCPT ); Tue, 31 May 2022 14:40:25 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id CFECE915A5; Tue, 31 May 2022 11:40:24 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 8762EB815F3; Tue, 31 May 2022 18:40:23 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id F420BC385A9; Tue, 31 May 2022 18:40:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1654022422; bh=tXaUGqk9As9IrFhg9p2k/6RaYYsLKhRUJfNXVwHGvb0=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=TZHNhO0fPHVcQR7T6BtPA70+UpK0C1F+3xMic4eiSH5SvH/GK5T0CY+RANvC+oKEi k3Y2SXzbM0zeMV3R3hF5YMb+Bbk59VY0gVQlw/RsAdr0B3OL43F58bU6fYqIOo/GOR 89ES1JLYOuqHvSM/ywW4HD/LLB2jQgLdzY/JfkEM= Date: Tue, 31 May 2022 11:40:21 -0700 From: Andrew Morton To: Kalpana Shetty Cc: , , , Subject: Re: [PATCH] selftests/vm: Add protection_keys tests to run_vmtests Message-Id: <20220531114021.25a8ab92ad112a4b9f985ebe@linux-foundation.org> In-Reply-To: <20220531102556.388-1-kalpana.shetty@amd.com> References: <20220531102556.388-1-kalpana.shetty@amd.com> X-Mailer: Sylpheed 3.7.0 (GTK+ 2.24.33; x86_64-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 31 May 2022 15:55:56 +0530 Kalpana Shetty wrote: > --- a/tools/testing/selftests/vm/run_vmtests.sh > +++ b/tools/testing/selftests/vm/run_vmtests.sh > @@ -179,4 +179,11 @@ run_test ./ksm_tests -N -m 1 > # KSM test with 2 NUMA nodes and merge_across_nodes = 0 > run_test ./ksm_tests -N -m 0 > > +# protection_keys tests > +if [ $VADDR64 -eq 0 ]; then > + run_test ./protection_keys_32 > +else > + run_test ./protection_keys_64 > +fi > + > exit $exitcode So we're presently not running this test at all, unless invoked by hand? I'm thinking we should backport this fix - have you any idea when we broke it?