From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50915) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VHfRg-0006Rg-7U for qemu-devel@nongnu.org; Thu, 05 Sep 2013 15:42:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VHfRb-0008UE-6i for qemu-devel@nongnu.org; Thu, 05 Sep 2013 15:42:24 -0400 Message-ID: <1378407927.3246.263.camel@ul30vt.home> From: Alex Williamson Date: Thu, 05 Sep 2013 13:05:27 -0600 In-Reply-To: <1377857738-14789-12-git-send-email-aik@ozlabs.ru> References: <1377857738-14789-1-git-send-email-aik@ozlabs.ru> <1377857738-14789-12-git-send-email-aik@ozlabs.ru> Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v4 11/12] spapr vfio: enable for spapr List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexey Kardashevskiy Cc: Alexander Graf , qemu-ppc@nongnu.org, qemu-devel@nongnu.org, David Gibson On Fri, 2013-08-30 at 20:15 +1000, Alexey Kardashevskiy wrote: > This turns the sPAPR support on and enables VFIO container use > in the kernel. > > Signed-off-by: Alexey Kardashevskiy > --- > Changes: > v4: > * fixed format string to use %m which is a glibc extension: > "Print output of strerror(errno). No argument is required." > --- > hw/misc/vfio.c | 30 ++++++++++++++++++++++++++++++ > 1 file changed, 30 insertions(+) > > diff --git a/hw/misc/vfio.c b/hw/misc/vfio.c > index 4210471..882da70 100644 > --- a/hw/misc/vfio.c > +++ b/hw/misc/vfio.c > @@ -2815,6 +2815,36 @@ static int vfio_connect_container(VFIOGroup *group, VFIOAddressSpace *space) > > memory_listener_register(&container->iommu_data.listener, > container->space->as); > + } else if (ioctl(fd, VFIO_CHECK_EXTENSION, VFIO_SPAPR_TCE_IOMMU)) { > + ret = ioctl(group->fd, VFIO_GROUP_SET_CONTAINER, &fd); > + if (ret) { > + error_report("vfio: failed to set group container: %m"); > + g_free(container); > + close(fd); > + return -errno; > + } > + > + ret = ioctl(fd, VFIO_SET_IOMMU, VFIO_SPAPR_TCE_IOMMU); > + if (ret) { > + error_report("vfio: failed to set iommu for container: %m"); > + g_free(container); > + close(fd); > + return -errno; > + } > + > + ret = ioctl(fd, VFIO_IOMMU_ENABLE); > + if (ret) { > + error_report("vfio: failed to enable container: %m"); > + g_free(container); > + close(fd); > + return -errno; These (and the copies that already exist in this function) are screaming for a goto. > + } > + > + container->iommu_data.listener = vfio_memory_listener; > + container->iommu_data.release = vfio_listener_release; > + > + memory_listener_register(&container->iommu_data.listener, > + container->space->as); > } else { > error_report("vfio: No available IOMMU models"); > g_free(container);