From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sean Christopherson Date: Mon, 2 Dec 2024 10:47:48 -0800 Subject: [PATCH v4 15/16] KVM: selftests: Use canonical $(ARCH) paths for KVM selftests directories In-Reply-To: <20241128092546.7a5b3f30@p-imbrenda> References: <20241128005547.4077116-1-seanjc@google.com> <20241128005547.4077116-16-seanjc@google.com> <20241128092546.7a5b3f30@p-imbrenda> Message-ID: List-Id: To: kvm-riscv@lists.infradead.org MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit On Thu, Nov 28, 2024, Claudio Imbrenda wrote: > On Wed, 27 Nov 2024 16:55:46 -0800 > > diff --git a/tools/testing/selftests/kvm/include/x86_64/svm_util.h b/tools/testing/selftests/kvm/include/x86/svm_util.h > > similarity index 94% > > rename from tools/testing/selftests/kvm/include/x86_64/svm_util.h > > rename to tools/testing/selftests/kvm/include/x86/svm_util.h > > index 044f0f872ba9..b74c6dcddcbd 100644 > > --- a/tools/testing/selftests/kvm/include/x86_64/svm_util.h > > +++ b/tools/testing/selftests/kvm/include/x86/svm_util.h > > @@ -1,8 +1,5 @@ > > /* SPDX-License-Identifier: GPL-2.0-only */ > > /* > > - * tools/testing/selftests/kvm/include/x86_64/svm_utils.h > > this line clearly has to go ^ > > > - * Header for nested SVM testing > > but I think this one can stay? ^ It should go too, the header contains declarations for helpers that having nothing to do with nested SVM. On a somewhat related topic, the file should probably be "svm.h", but that's a future cleanup.