From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-176.mta0.migadu.com (out-176.mta0.migadu.com [91.218.175.176]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 6B2111427B for ; Wed, 8 May 2024 06:41:21 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.176 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715150483; cv=none; b=hTLAU88WywurYlLx9xeRt19z9uZXclmyvBXho+UtYMrkzA81nj9eR9MZjKscx57sl+AyUtS3Sr+oCu7SMLL8IccqXBBE8lccRzVkoL4DJGQe04E7HB95sF1Nxz1x2HiTRiQZuqQsSVmJqFibCKUmvDVmqw/3jg6OpDTLK/FCxwk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715150483; c=relaxed/simple; bh=HudRakf3D9CeUbnWUUiGSx/9kGKnmIN2BmxCQmevDME=; h=Content-Type:Mime-Version:Subject:From:In-Reply-To:Date:Cc: Message-Id:References:To; b=G/919+QLRaUYcmdTdlXXmq40PLXyBlgycuxwfMEcKLIqlHwbgtHDhp49hCG6XgJQ8oYR9ygV/Gvmxkd+Sxh2nxawdTkLpF4L/B2ni+xJ7SIHCtYuv/zUtiwCVcoHqNrsmUz57l3uuhHxWxW6COPY3A+8IolYAssLz/gDa/9yzG4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=fTfgDz1X; arc=none smtp.client-ip=91.218.175.176 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="fTfgDz1X" Content-Type: text/plain; charset=utf-8 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1715150479; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=HudRakf3D9CeUbnWUUiGSx/9kGKnmIN2BmxCQmevDME=; b=fTfgDz1XhsgVdMHzUgZE9QB/inof8pX2WqyQObELukjydd455eFIOjtzdVv+ee369xusup mN+EAqxU2hUqgAids7bmsiuT3T6ErZaEc3UDnHsp2XrGuanIBNuH+/Vkd8u9wyQTclMdnf K3cVaerHysVz4nPpYXKV9u2tL2ibjiQ= Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3774.400.31\)) Subject: Re: [PATCH] Build guest_memfd_test also on arm64. X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Itaru Kitayama In-Reply-To: Date: Wed, 8 May 2024 15:41:00 +0900 Cc: Shuah Khan , kvm@vger.kernel.org, linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org, Itaru Kitayama Content-Transfer-Encoding: quoted-printable Message-Id: References: <20240222-memfd-v1-1-7d39680286f1@linux.dev> To: Paolo Bonzini X-Migadu-Flow: FLOW_OUT Hi Paolo, > On Feb 23, 2024, at 17:57, Paolo Bonzini wrote: >=20 > On Thu, Feb 22, 2024 at 12:44=E2=80=AFAM Itaru Kitayama > wrote: >> on arm64 KVM_CAP_GUEST_MEMDF capability is not enabled, but >> guest_memfd_test can build on arm64, let's build it on arm64 as well. >=20 > The test will be skipped, so there's no point in compiling it. It=E2=80=99s not merged yet, but the Arm CCA support series V2 is out = there, would you consider building it for arm64 as well? Thanks, Itaru. >=20 > Paolo >=20 >> Signed-off-by: Itaru Kitayama >> --- >> tools/testing/selftests/kvm/Makefile | 1 + >> 1 file changed, 1 insertion(+) >>=20 >> diff --git a/tools/testing/selftests/kvm/Makefile = b/tools/testing/selftests/kvm/Makefile >> index 492e937fab00..8a4f8afb81ca 100644 >> --- a/tools/testing/selftests/kvm/Makefile >> +++ b/tools/testing/selftests/kvm/Makefile >> @@ -158,6 +158,7 @@ TEST_GEN_PROGS_aarch64 +=3D = access_tracking_perf_test >> TEST_GEN_PROGS_aarch64 +=3D demand_paging_test >> TEST_GEN_PROGS_aarch64 +=3D dirty_log_test >> TEST_GEN_PROGS_aarch64 +=3D dirty_log_perf_test >> +TEST_GEN_PROGS_aarch64 +=3D guest_memfd_test >> TEST_GEN_PROGS_aarch64 +=3D guest_print_test >> TEST_GEN_PROGS_aarch64 +=3D get-reg-list >> TEST_GEN_PROGS_aarch64 +=3D kvm_create_max_vcpus >>=20 >> --- >> base-commit: 39133352cbed6626956d38ed72012f49b0421e7b >> change-id: 20240222-memfd-7285f9564c1e >>=20 >> Best regards, >> -- >> Itaru Kitayama >>=20 >=20