From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S967359AbeCAJ71 (ORCPT ); Thu, 1 Mar 2018 04:59:27 -0500 Received: from mx3-rdu2.redhat.com ([66.187.233.73]:55768 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S967148AbeCAJ7V (ORCPT ); Thu, 1 Mar 2018 04:59:21 -0500 Date: Thu, 1 Mar 2018 10:59:15 +0100 From: Cornelia Huck To: Tony Krowiak Cc: linux-s390@vger.kernel.org, linux-kernel@vger.kernel.org, kvm@vger.kernel.org, freude@de.ibm.com, schwidefsky@de.ibm.com, heiko.carstens@de.ibm.com, borntraeger@de.ibm.com, kwankhede@nvidia.com, bjsdjshi@linux.vnet.ibm.com, pbonzini@redhat.com, alex.williamson@redhat.com, pmorel@linux.vnet.ibm.com, alifm@linux.vnet.ibm.com, mjrosato@linux.vnet.ibm.com, jjherne@linux.vnet.ibm.com, thuth@redhat.com, pasic@linux.vnet.ibm.com, fiuczy@linux.vnet.ibm.com, buendgen@de.ibm.com Subject: Re: [PATCH v2 01/15] KVM: s390: refactor crypto initialization Message-ID: <20180301105915.5c871524.cohuck@redhat.com> In-Reply-To: References: <1519741693-17440-1-git-send-email-akrowiak@linux.vnet.ibm.com> <1519741693-17440-2-git-send-email-akrowiak@linux.vnet.ibm.com> <20180228183741.5276e3d3.cohuck@redhat.com> Organization: Red Hat GmbH MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 28 Feb 2018 16:23:29 -0500 Tony Krowiak wrote: > On 02/28/2018 12:37 PM, Cornelia Huck wrote: > > On Tue, 27 Feb 2018 09:27:59 -0500 > > Tony Krowiak wrote: > >> diff --git a/arch/s390/kvm/kvm-ap.c b/arch/s390/kvm/kvm-ap.c > >> new file mode 100644 > >> index 0000000..5305f4c > >> --- /dev/null > >> +++ b/arch/s390/kvm/kvm-ap.c > >> @@ -0,0 +1,47 @@ > >> +/* > >> + * Adjunct Processor (AP) configuration management for KVM guests > >> + * > >> + * Copyright IBM Corp. 2017 > >> + * > >> + * Author(s): Tony Krowiak > >> + */ > >> + > >> +#include > >> +#include > >> + > >> +#include "kvm-s390.h" > >> + > >> +static int kvm_ap_apxa_installed(void) > >> +{ > >> + int ret; > >> + struct ap_config_info config; > >> + > >> + ret = ap_query_configuration(&config); > > Doesn't that introduce a dependency on CONFIG_ZCRYPT? > It does, but AFAIK zcrypt is built into the kernel. Or is that not what > you are asking? It is built into the kernel (and not into a module) if CONFIG_ZCRYPT is set. When I compile a kernel with CONFIG_KVM set and CONFIG_ZCRYPT unset, with this patch applied I get arch/s390/kvm/kvm-ap.o: In function `kvm_ap_apxa_installed': /home/cohuck/git/linux/arch/s390/kvm/kvm-ap.c:19: undefined reference to `ap_query_configuration' So I'm afraid you cannot use ap_query_configuration() in base s390 kvm code unless you move that function to a place where it is always built (or at least always built if either CONFIG_KVM or CONFIG_ZCRYPT are set).