All of lore.kernel.org
 help / color / mirror / Atom feed
From: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
To: Alex Williamson <alex.williamson@redhat.com>
Cc: aafabbri@cisco.com, aik@au1.ibm.com, kvm@vger.kernel.org,
	pmac@au1.ibm.com, qemu-devel@nongnu.org, joerg.roedel@amd.com,
	agraf@suse.de, dwg@au1.ibm.com, chrisw@sous-sol.org,
	B08248@freescale.com, iommu@lists.linux-foundation.org,
	avi@redhat.com, linux-pci@vger.kernel.org, B07421@freescale.com,
	benve@cisco.com
Subject: Re: [RFC PATCH 4/5] VFIO: Add PCI device support
Date: Wed, 7 Sep 2011 14:55:05 -0400	[thread overview]
Message-ID: <20110907185505.GF7074@dumpdata.com> (raw)
In-Reply-To: <20110901195050.2391.12028.stgit@s20.home>

On Thu, Sep 01, 2011 at 01:50:50PM -0600, Alex Williamson wrote:
> Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
> ---
> 
>  drivers/vfio/Kconfig        |    7 ++
>  drivers/vfio/Makefile       |    1 
>  drivers/vfio/vfio_main.c    |   10 +++
>  drivers/vfio/vfio_pci.c     |  124 +++++++++++++++++++++++++++++++++++++++++++
>  drivers/vfio/vfio_private.h |    5 ++
>  5 files changed, 147 insertions(+), 0 deletions(-)
>  create mode 100644 drivers/vfio/vfio_pci.c
> 
> diff --git a/drivers/vfio/Kconfig b/drivers/vfio/Kconfig
> index a150521..b17bdbd 100644
> --- a/drivers/vfio/Kconfig
> +++ b/drivers/vfio/Kconfig
> @@ -3,3 +3,10 @@ menuconfig VFIO
>  	depends on IOMMU_API
>  	help
>  	  If you don't know what to do here, say N.
> +
> +menuconfig VFIO_PCI
> +	bool "VFIO support for PCI devices"
> +	depends on VFIO && PCI
> +	default y if X86

Hahah.. And Linus is going to tear your behind for that.

Default should be 'n'

WARNING: multiple messages have this Message-ID (diff)
From: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
To: Alex Williamson <alex.williamson@redhat.com>
Cc: aafabbri@cisco.com, aik@au1.ibm.com, kvm@vger.kernel.org,
	pmac@au1.ibm.com, qemu-devel@nongnu.org, joerg.roedel@amd.com,
	agraf@suse.de, dwg@au1.ibm.com, chrisw@sous-sol.org,
	B08248@freescale.com, iommu@lists.linux-foundation.org,
	avi@redhat.com, linux-pci@vger.kernel.org, B07421@freescale.com,
	benve@cisco.com
Subject: Re: [Qemu-devel] [RFC PATCH 4/5] VFIO: Add PCI device support
Date: Wed, 7 Sep 2011 14:55:05 -0400	[thread overview]
Message-ID: <20110907185505.GF7074@dumpdata.com> (raw)
In-Reply-To: <20110901195050.2391.12028.stgit@s20.home>

On Thu, Sep 01, 2011 at 01:50:50PM -0600, Alex Williamson wrote:
> Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
> ---
> 
>  drivers/vfio/Kconfig        |    7 ++
>  drivers/vfio/Makefile       |    1 
>  drivers/vfio/vfio_main.c    |   10 +++
>  drivers/vfio/vfio_pci.c     |  124 +++++++++++++++++++++++++++++++++++++++++++
>  drivers/vfio/vfio_private.h |    5 ++
>  5 files changed, 147 insertions(+), 0 deletions(-)
>  create mode 100644 drivers/vfio/vfio_pci.c
> 
> diff --git a/drivers/vfio/Kconfig b/drivers/vfio/Kconfig
> index a150521..b17bdbd 100644
> --- a/drivers/vfio/Kconfig
> +++ b/drivers/vfio/Kconfig
> @@ -3,3 +3,10 @@ menuconfig VFIO
>  	depends on IOMMU_API
>  	help
>  	  If you don't know what to do here, say N.
> +
> +menuconfig VFIO_PCI
> +	bool "VFIO support for PCI devices"
> +	depends on VFIO && PCI
> +	default y if X86

Hahah.. And Linus is going to tear your behind for that.

Default should be 'n'

  reply	other threads:[~2011-09-07 18:55 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-01 19:50 [Qemu-devel] [RFC PATCH 0/5] VFIO-NG group/device/iommu framework Alex Williamson
2011-09-01 19:50 ` [RFC PATCH 1/5] iommu: Add iommu_device_group callback and iommu_group sysfs entry Alex Williamson
2011-09-01 19:50   ` [Qemu-devel] " Alex Williamson
2011-09-01 19:50 ` [RFC PATCH 2/5] intel-iommu: Implement iommu_device_group Alex Williamson
2011-09-01 19:50   ` [Qemu-devel] " Alex Williamson
2011-09-01 19:50 ` [Qemu-devel] [RFC PATCH 3/5] VFIO: Base framework for new VFIO driver Alex Williamson
2011-09-07 14:52   ` Konrad Rzeszutek Wilk
2011-09-07 14:52     ` [Qemu-devel] " Konrad Rzeszutek Wilk
2011-09-19 16:42     ` Alex Williamson
2011-09-19 16:42       ` [Qemu-devel] " Alex Williamson
2011-09-01 19:50 ` Alex Williamson
2011-09-01 19:50 ` [RFC PATCH 4/5] VFIO: Add PCI device support Alex Williamson
2011-09-01 19:50 ` [Qemu-devel] " Alex Williamson
2011-09-07 18:55   ` Konrad Rzeszutek Wilk [this message]
2011-09-07 18:55     ` Konrad Rzeszutek Wilk
2011-09-08  7:52     ` Avi Kivity
2011-09-08  7:52       ` [Qemu-devel] " Avi Kivity
2011-09-08 21:52       ` Alex Williamson
2011-09-08 21:52         ` [Qemu-devel] " Alex Williamson
2011-09-01 19:50 ` [Qemu-devel] [RFC PATCH 5/5] VFIO: Simple test tool Alex Williamson
2011-09-01 19:50 ` Alex Williamson
2011-09-07 11:58 ` [RFC PATCH 0/5] VFIO-NG group/device/iommu framework Alexander Graf
2011-09-07 11:58   ` [Qemu-devel] " Alexander Graf
2011-09-08 21:54   ` Alex Williamson
2011-09-08 21:54     ` [Qemu-devel] " Alex Williamson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110907185505.GF7074@dumpdata.com \
    --to=konrad.wilk@oracle.com \
    --cc=B07421@freescale.com \
    --cc=B08248@freescale.com \
    --cc=aafabbri@cisco.com \
    --cc=agraf@suse.de \
    --cc=aik@au1.ibm.com \
    --cc=alex.williamson@redhat.com \
    --cc=avi@redhat.com \
    --cc=benve@cisco.com \
    --cc=chrisw@sous-sol.org \
    --cc=dwg@au1.ibm.com \
    --cc=iommu@lists.linux-foundation.org \
    --cc=joerg.roedel@amd.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=pmac@au1.ibm.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.