public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
From: Yu Zhao <yu.zhao@intel.com>
To: Matthew Wilcox <matthew@wil.cx>
Cc: "linux-pci@vger.kernel.org" <linux-pci@vger.kernel.org>,
	"kvm@vger.kernel.org" <kvm@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v11 0/8] PCI: Linux kernel SR-IOV support
Date: Tue, 17 Mar 2009 09:55:47 +0800	[thread overview]
Message-ID: <20090317015547.GA22152@yzhao-otc.sh.intel.com> (raw)
In-Reply-To: <1236756349-18892-1-git-send-email-yu.zhao@intel.com>

Hi Matthew,

Can you please take a look at this new version? I'd like to make sure
that all concerns are addressed and I didn't miss something :-)

Thanks,
Yu

On Wed, Mar 11, 2009 at 03:25:41PM +0800, Yu Zhao wrote:
> Greetings,
> 
> Following patches are intended to support SR-IOV capability in the
> Linux kernel. With these patches, people can turn a PCI device with
> the capability into multiple ones from software perspective, which
> will benefit KVM and achieve other purposes such as QoS, security,
> and etc.
> 
> SR-IOV specification can be found at:
>   http://www.pcisig.com/members/downloads/specifications/iov/sr-iov1.0_11Sep07.pdf
> (it requires membership.)
> 
> Devices that support SR-IOV are available from following vendors:
>   http://download.intel.com/design/network/ProdBrf/320025.pdf
>   http://www.myri.com/vlsi/Lanai_Z8ES_Datasheet.pdf
>   http://www.neterion.com/products/pdfs/X3100ProductBrief.pdf
> 
> The patches to enable the SR-IOV capability of Intel 82576 NIC are
> available at (a.k.a Physical Function driver):
>   http://patchwork.kernel.org/patch/8063/
>   http://patchwork.kernel.org/patch/8064/
>   http://patchwork.kernel.org/patch/8065/
>   http://patchwork.kernel.org/patch/8066/
> And the driver for Intel 82576 Virtual Function are available at:
>   http://patchwork.kernel.org/patch/11029/
>   http://patchwork.kernel.org/patch/11028/
> 
> 
> Major changes from v10 to v11:
>   1, use pci_setup_device() to setup Virtual Function (Matthew Wilcox)
>   2, various coding style fixes (Matthew Wilcox)
>   3, wording and grammar fixes (Randy Dunlap)
> 
>   v9 -> v10:
>   1, minor fix in pci_restore_iov_state().
>   2, respin against the latest tree.
> 
>   v8 -> v9:
>   1, put a might_sleep() into SR-IOV API which sleeps (Andi Kleen)
>   2, block user config accesses before clearing VF Enable bit (Matthew Wilcox)
> 
> 
> Yu Zhao (8):
>   PCI: initialize and release SR-IOV capability
>   PCI: restore saved SR-IOV state
>   PCI: reserve bus range for SR-IOV device
>   PCI: centralize device setup code into pci_setup_device()
>   PCI: add SR-IOV API for Physical Function driver
>   PCI: handle SR-IOV Virtual Function Migration
>   PCI: document SR-IOV sysfs entries
>   PCI: manual for SR-IOV user and driver developer
> 
>  Documentation/ABI/testing/sysfs-bus-pci |   27 ++
>  Documentation/DocBook/kernel-api.tmpl   |    1 +
>  Documentation/PCI/pci-iov-howto.txt     |   99 +++++
>  drivers/pci/Kconfig                     |   10 +
>  drivers/pci/Makefile                    |    2 +
>  drivers/pci/iov.c                       |  677 +++++++++++++++++++++++++++++++
>  drivers/pci/pci.c                       |    8 +
>  drivers/pci/pci.h                       |   53 +++
>  drivers/pci/probe.c                     |   86 +++--
>  include/linux/pci.h                     |   32 ++
>  include/linux/pci_regs.h                |   33 ++
>  11 files changed, 989 insertions(+), 39 deletions(-)
>  create mode 100644 Documentation/PCI/pci-iov-howto.txt
>  create mode 100644 drivers/pci/iov.c

      parent reply	other threads:[~2009-03-17  1:55 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-03-11  7:25 [PATCH v11 0/8] PCI: Linux kernel SR-IOV support Yu Zhao
2009-03-11  7:25 ` [PATCH v11 1/8] PCI: initialize and release SR-IOV capability Yu Zhao
2009-03-19 19:53   ` Matthew Wilcox
2009-03-20  1:20     ` Jesse Barnes
2009-03-20  1:42       ` Matthew Wilcox
2009-03-20  3:28       ` Zhao, Yu
2009-03-20  2:06     ` Yu Zhao
2009-03-11  7:25 ` [PATCH v11 2/8] PCI: restore saved SR-IOV state Yu Zhao
2009-03-11  7:25 ` [PATCH v11 3/8] PCI: reserve bus range for SR-IOV device Yu Zhao
2009-03-11  7:25 ` [PATCH v11 4/8] PCI: centralize device setup code Yu Zhao
2009-03-11  7:25 ` [PATCH v11 5/8] PCI: add SR-IOV API for Physical Function driver Yu Zhao
2009-03-11  7:25 ` [PATCH v11 6/8] PCI: handle SR-IOV Virtual Function Migration Yu Zhao
2009-03-11  7:25 ` [PATCH v11 7/8] PCI: document SR-IOV sysfs entries Yu Zhao
2009-03-11  7:25 ` [PATCH v11 8/8] PCI: manual for SR-IOV user and driver developer Yu Zhao
2009-03-17  1:55 ` Yu Zhao [this message]

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=20090317015547.GA22152@yzhao-otc.sh.intel.com \
    --to=yu.zhao@intel.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=matthew@wil.cx \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox