From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758720AbdAFQQv (ORCPT ); Fri, 6 Jan 2017 11:16:51 -0500 Received: from mx1.redhat.com ([209.132.183.28]:45940 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751711AbdAFQQo (ORCPT ); Fri, 6 Jan 2017 11:16:44 -0500 Date: Fri, 6 Jan 2017 09:16:42 -0700 From: Alex Williamson To: Linus Torvalds Cc: , "kvm@vger.kernel.org" , Stephen Rothwell , Arnd Bergmann , Arvind Yadav , Dan Carpenter , Paul Gortmaker , , Jani Nikula , Daniel Vetter , Intel Graphics , Maling list - DRI developers Subject: [GIT PULL] VFIO fixes for v4.10-rc3 Message-ID: <20170106091642.12e0fdd4@t450s.home> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.32]); Fri, 06 Jan 2017 16:16:44 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Linus, This pull request has a merge conflict and requires a build fix with kvmgt (merged in ed40875), which is a consumer of the new vfio-mdev work. Stephen Rothwell has fixed both of these correctly for linux-next as documented here: merge conflict: http://marc.info/?l=linux-next&m=148340046329214 build fix: https://lkml.org/lkml/2017/1/2/521 Please make the corresponding changes in your merge. Thanks! Alex The following changes since commit 98473f9f3f9bd404873cd1178c8be7d6d619f0d1: mm/filemap: fix parameters to test_bit() (2016-12-29 14:46:39 -0800) are available in the git repository at: git://github.com/awilliam/linux-vfio.git tags/vfio-v4.10-rc3 for you to fetch changes up to c6ef7fd40eddad38a8825cbd6bb2ce8bdbba88f5: vfio-mdev: fix non-standard ioctl return val causing i386 build fail (2017-01-04 13:22:38 -0700) ---------------------------------------------------------------- VFIO fixes for v4.10-rc3 - Add mtty sample driver properly into build system (Alex Williamson) - Restore type1 mapping performance after mdev (Alex Williamson) - Fix mdev device race (Alex Williamson) - Cleanups to the mdev ABI used by vendor drivers (Alex Williamson) - Build fix for old compilers (Arnd Bergmann) - Fix sample driver error path (Dan Carpenter) - Handle pci_iomap() error (Arvind Yadav) - Fix mdev ioctl return type (Paul Gortmaker) ---------------------------------------------------------------- Alex Williamson (6): vfio-mdev: Fix mtty sample driver building vfio/type1: Restore mapping performance with mdev support vfio-mdev: Fix remove race vfio-mdev: de-polute the namespace, rename parent_device & parent_ops vfio-mdev: Make mdev_parent private vfio-mdev: Make mdev_device private and abstract interfaces Arnd Bergmann (1): vfio-pci: use 32-bit comparisons for register address for gcc-4.5 Arvind Yadav (1): vfio-pci: Handle error from pci_iomap Dan Carpenter (1): vfio-mdev: fix some error codes in the sample code Paul Gortmaker (1): vfio-mdev: fix non-standard ioctl return val causing i386 build fail Documentation/vfio-mediated-device.txt | 27 +++++---- drivers/gpu/drm/i915/gvt/kvmgt.c | 22 ++++---- drivers/vfio/mdev/mdev_core.c | 100 +++++++++++++++++++++++++++------ drivers/vfio/mdev/mdev_private.h | 29 +++++++++- drivers/vfio/mdev/mdev_sysfs.c | 8 +-- drivers/vfio/mdev/vfio_mdev.c | 12 ++-- drivers/vfio/pci/vfio_pci.c | 4 ++ drivers/vfio/pci/vfio_pci_rdwr.c | 5 +- drivers/vfio/vfio_iommu_type1.c | 98 ++++++++++++++++---------------- include/linux/mdev.h | 56 +++++------------- samples/Kconfig | 7 +++ samples/Makefile | 3 +- samples/vfio-mdev/Makefile | 14 +---- samples/vfio-mdev/mtty.c | 32 ++++++----- 14 files changed, 246 insertions(+), 171 deletions(-)