From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751961AbdJYOj2 (ORCPT ); Wed, 25 Oct 2017 10:39:28 -0400 Received: from userp1040.oracle.com ([156.151.31.81]:24203 "EHLO userp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751036AbdJYOj1 (ORCPT ); Wed, 25 Oct 2017 10:39:27 -0400 Subject: Re: [PATCH v6 13/13] xen: introduce a Kconfig option to enable the pvcalls frontend To: Stefano Stabellini , xen-devel@lists.xen.org References: <1508866413-30141-1-git-send-email-sstabellini@kernel.org> <1508866413-30141-13-git-send-email-sstabellini@kernel.org> Cc: linux-kernel@vger.kernel.org, jgross@suse.com, Stefano Stabellini From: Boris Ostrovsky Message-ID: <4fc30aab-9c21-fe7b-52c9-c9558dec6ab9@oracle.com> Date: Wed, 25 Oct 2017 10:39:52 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: <1508866413-30141-13-git-send-email-sstabellini@kernel.org> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-Source-IP: userv0021.oracle.com [156.151.31.71] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 10/24/2017 01:33 PM, Stefano Stabellini wrote: > Also add pvcalls-front to the Makefile. > > Signed-off-by: Stefano Stabellini > CC: boris.ostrovsky@oracle.com > CC: jgross@suse.com > --- > drivers/xen/Kconfig | 9 +++++++++ > drivers/xen/Makefile | 1 + > 2 files changed, 10 insertions(+) > > diff --git a/drivers/xen/Kconfig b/drivers/xen/Kconfig > index 4545561..0b2c828 100644 > --- a/drivers/xen/Kconfig > +++ b/drivers/xen/Kconfig > @@ -196,6 +196,15 @@ config XEN_PCIDEV_BACKEND > > If in doubt, say m. > > +config XEN_PVCALLS_FRONTEND > + tristate "XEN PV Calls frontend driver" > + depends on INET && XEN > + help > + Experimental frontend for the Xen PV Calls protocol > + (https://xenbits.xen.org/docs/unstable/misc/pvcalls.html). It > + sends a small set of POSIX calls to the backend, which > + implements them. default n ? (and maybe select XEN_XENBUS_FRONTEND) -boris > + > config XEN_PVCALLS_BACKEND > bool "XEN PV Calls backend driver" > depends on INET && XEN && XEN_BACKEND > diff --git a/drivers/xen/Makefile b/drivers/xen/Makefile > index 480b928..afb9e03 100644 > --- a/drivers/xen/Makefile > +++ b/drivers/xen/Makefile > @@ -39,6 +39,7 @@ obj-$(CONFIG_XEN_EFI) += efi.o > obj-$(CONFIG_XEN_SCSI_BACKEND) += xen-scsiback.o > obj-$(CONFIG_XEN_AUTO_XLATE) += xlate_mmu.o > obj-$(CONFIG_XEN_PVCALLS_BACKEND) += pvcalls-back.o > +obj-$(CONFIG_XEN_PVCALLS_FRONTEND) += pvcalls-front.o > xen-evtchn-y := evtchn.o > xen-gntdev-y := gntdev.o > xen-gntalloc-y := gntalloc.o