All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alex Williamson <alex.williamson-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
To: Linus Torvalds
	<torvalds-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>
Cc: B07421-KZfg59tc24xl57MIdRCFDg@public.gmane.org,
	kvm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	aik-sLpHqDYs0B2HXe+LvDLADg@public.gmane.org,
	benh-XVmvHMARGAS8U2dJNN8I7kB+6BGkLq7r@public.gmane.org,
	qemu-devel-qX2TKyscuCcdnm+yROfE0A@public.gmane.org,
	Paul Mackerras <paulus-eUNUBHrolfbYtjvyW6yDsg@public.gmane.org>,
	agraf-l3A5Bk7waGM@public.gmane.org,
	avi-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org,
	linux-pci-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	chrisw-69jw2NvuJkxg9hUCZPvPmw@public.gmane.org,
	B08248-KZfg59tc24xl57MIdRCFDg@public.gmane.org,
	bhelgaas-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org,
	david-xT8FGy+AXnRB3Ne2BGzF6laj5H9X9Tb+@public.gmane.org,
	gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org,
	dwmw2-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org,
	benve-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org
Subject: Re: [GIT PULL (PATCH 0/4)] VFIO driver for v3.6
Date: Tue, 31 Jul 2012 08:53:35 -0600	[thread overview]
Message-ID: <1343746415.3368.5.camel@ul30vt> (raw)
In-Reply-To: <CA+55aFzTzO-jzHNYSW6Hb5_kmP6aYCWH_hbAauLUn9rf9iLg_w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>

On Mon, 2012-07-30 at 22:11 -0700, Linus Torvalds wrote:
> On Mon, Jul 30, 2012 at 4:17 PM, Alex Williamson
> <alex.williamson-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> wrote:
> >
> > I'm pretty anxious to find out as well.  Linus, ping, any thoughts on
> > including this in 3.6?  Thanks,
> 
> I just pulled it, but then I unpulled again when I realized it's not a
> signed tag and it's on github.
> 
> Please, people. Do tagged releases with proper signatures if you're
> not using kernel.org or other controlled servers. In fact, I prefer
> signed tags even if you *do* use kernel.org etc.

Sorry about that, Linus.  I think this is a properly signed tag, please
let me know if I'm still screwing up.  Thanks,

Alex

The following changes since commit 2e3ee613480563a6d5c01b57d342e65cc58c06df:

  Merge tag 'writeback-proportions' of git://git.kernel.org/pub/scm/linux/kernel/git/wfg/linux (2012-07-30 22:14:04 -0700)

are available in the git repository at:


  git-9UaJU3cA/F/QT0dZR+AlfA@public.gmane.org:awilliam/linux-vfio.git tags/vfio-for-v3.6

for you to fetch changes up to 89e1f7d4c66d85f42c3d52ea3866eb10cadf6153:

  vfio: Add PCI device driver (2012-07-31 08:16:24 -0600)

----------------------------------------------------------------
VFIO for v3.6

----------------------------------------------------------------
Alex Williamson (4):
      vfio: VFIO core
      vfio: Add documentation
      vfio: Type1 IOMMU implementation
      vfio: Add PCI device driver

 Documentation/ioctl/ioctl-number.txt |    1 +
 Documentation/vfio.txt               |  314 +++++++
 MAINTAINERS                          |    8 +
 drivers/Kconfig                      |    2 +
 drivers/Makefile                     |    1 +
 drivers/vfio/Kconfig                 |   16 +
 drivers/vfio/Makefile                |    3 +
 drivers/vfio/pci/Kconfig             |    8 +
 drivers/vfio/pci/Makefile            |    4 +
 drivers/vfio/pci/vfio_pci.c          |  579 +++++++++++++
 drivers/vfio/pci/vfio_pci_config.c   | 1540 ++++++++++++++++++++++++++++++++++
 drivers/vfio/pci/vfio_pci_intrs.c    |  740 ++++++++++++++++
 drivers/vfio/pci/vfio_pci_private.h  |   91 ++
 drivers/vfio/pci/vfio_pci_rdwr.c     |  269 ++++++
 drivers/vfio/vfio.c                  | 1420 +++++++++++++++++++++++++++++++
 drivers/vfio/vfio_iommu_type1.c      |  753 +++++++++++++++++
 include/linux/vfio.h                 |  445 ++++++++++
 17 files changed, 6194 insertions(+)
 create mode 100644 Documentation/vfio.txt
 create mode 100644 drivers/vfio/Kconfig
 create mode 100644 drivers/vfio/Makefile
 create mode 100644 drivers/vfio/pci/Kconfig
 create mode 100644 drivers/vfio/pci/Makefile
 create mode 100644 drivers/vfio/pci/vfio_pci.c
 create mode 100644 drivers/vfio/pci/vfio_pci_config.c
 create mode 100644 drivers/vfio/pci/vfio_pci_intrs.c
 create mode 100644 drivers/vfio/pci/vfio_pci_private.h
 create mode 100644 drivers/vfio/pci/vfio_pci_rdwr.c
 create mode 100644 drivers/vfio/vfio.c
 create mode 100644 drivers/vfio/vfio_iommu_type1.c
 create mode 100644 include/linux/vfio.h

WARNING: multiple messages have this Message-ID (diff)
From: Alex Williamson <alex.williamson@redhat.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Paul Mackerras <paulus@samba.org>,
	benh@kernel.crashing.org, aik@ozlabs.ru,
	david@gibson.dropbear.id.au, gregkh@linuxfoundation.org,
	joerg.roedel@amd.com, dwmw2@infradead.org, chrisw@sous-sol.org,
	agraf@suse.de, benve@cisco.com, aafabbri@cisco.com,
	B08248@freescale.com, B07421@freescale.com, avi@redhat.com,
	konrad.wilk@oracle.com, kvm@vger.kernel.org,
	qemu-devel@nongnu.org, iommu@lists.linux-foundation.org,
	linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org,
	bhelgaas@google.com, ddutile@redhat.com
Subject: Re: [GIT PULL (PATCH 0/4)] VFIO driver for v3.6
Date: Tue, 31 Jul 2012 08:53:35 -0600	[thread overview]
Message-ID: <1343746415.3368.5.camel@ul30vt> (raw)
In-Reply-To: <CA+55aFzTzO-jzHNYSW6Hb5_kmP6aYCWH_hbAauLUn9rf9iLg_w@mail.gmail.com>

On Mon, 2012-07-30 at 22:11 -0700, Linus Torvalds wrote:
> On Mon, Jul 30, 2012 at 4:17 PM, Alex Williamson
> <alex.williamson@redhat.com> wrote:
> >
> > I'm pretty anxious to find out as well.  Linus, ping, any thoughts on
> > including this in 3.6?  Thanks,
> 
> I just pulled it, but then I unpulled again when I realized it's not a
> signed tag and it's on github.
> 
> Please, people. Do tagged releases with proper signatures if you're
> not using kernel.org or other controlled servers. In fact, I prefer
> signed tags even if you *do* use kernel.org etc.

Sorry about that, Linus.  I think this is a properly signed tag, please
let me know if I'm still screwing up.  Thanks,

Alex

The following changes since commit 2e3ee613480563a6d5c01b57d342e65cc58c06df:

  Merge tag 'writeback-proportions' of git://git.kernel.org/pub/scm/linux/kernel/git/wfg/linux (2012-07-30 22:14:04 -0700)

are available in the git repository at:


  git@github.com:awilliam/linux-vfio.git tags/vfio-for-v3.6

for you to fetch changes up to 89e1f7d4c66d85f42c3d52ea3866eb10cadf6153:

  vfio: Add PCI device driver (2012-07-31 08:16:24 -0600)

----------------------------------------------------------------
VFIO for v3.6

----------------------------------------------------------------
Alex Williamson (4):
      vfio: VFIO core
      vfio: Add documentation
      vfio: Type1 IOMMU implementation
      vfio: Add PCI device driver

 Documentation/ioctl/ioctl-number.txt |    1 +
 Documentation/vfio.txt               |  314 +++++++
 MAINTAINERS                          |    8 +
 drivers/Kconfig                      |    2 +
 drivers/Makefile                     |    1 +
 drivers/vfio/Kconfig                 |   16 +
 drivers/vfio/Makefile                |    3 +
 drivers/vfio/pci/Kconfig             |    8 +
 drivers/vfio/pci/Makefile            |    4 +
 drivers/vfio/pci/vfio_pci.c          |  579 +++++++++++++
 drivers/vfio/pci/vfio_pci_config.c   | 1540 ++++++++++++++++++++++++++++++++++
 drivers/vfio/pci/vfio_pci_intrs.c    |  740 ++++++++++++++++
 drivers/vfio/pci/vfio_pci_private.h  |   91 ++
 drivers/vfio/pci/vfio_pci_rdwr.c     |  269 ++++++
 drivers/vfio/vfio.c                  | 1420 +++++++++++++++++++++++++++++++
 drivers/vfio/vfio_iommu_type1.c      |  753 +++++++++++++++++
 include/linux/vfio.h                 |  445 ++++++++++
 17 files changed, 6194 insertions(+)
 create mode 100644 Documentation/vfio.txt
 create mode 100644 drivers/vfio/Kconfig
 create mode 100644 drivers/vfio/Makefile
 create mode 100644 drivers/vfio/pci/Kconfig
 create mode 100644 drivers/vfio/pci/Makefile
 create mode 100644 drivers/vfio/pci/vfio_pci.c
 create mode 100644 drivers/vfio/pci/vfio_pci_config.c
 create mode 100644 drivers/vfio/pci/vfio_pci_intrs.c
 create mode 100644 drivers/vfio/pci/vfio_pci_private.h
 create mode 100644 drivers/vfio/pci/vfio_pci_rdwr.c
 create mode 100644 drivers/vfio/vfio.c
 create mode 100644 drivers/vfio/vfio_iommu_type1.c
 create mode 100644 include/linux/vfio.h




WARNING: multiple messages have this Message-ID (diff)
From: Alex Williamson <alex.williamson@redhat.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: B07421@freescale.com, kvm@vger.kernel.org, aik@ozlabs.ru,
	qemu-devel@nongnu.org, aafabbri@cisco.com,
	Paul Mackerras <paulus@samba.org>,
	agraf@suse.de, avi@redhat.com, linux-pci@vger.kernel.org,
	konrad.wilk@oracle.com, joerg.roedel@amd.com,
	chrisw@sous-sol.org, B08248@freescale.com, bhelgaas@google.com,
	david@gibson.dropbear.id.au, gregkh@linuxfoundation.org,
	linux-kernel@vger.kernel.org, iommu@lists.linux-foundation.org,
	ddutile@redhat.com, dwmw2@infradead.org, benve@cisco.com
Subject: Re: [Qemu-devel] [GIT PULL (PATCH 0/4)] VFIO driver for v3.6
Date: Tue, 31 Jul 2012 08:53:35 -0600	[thread overview]
Message-ID: <1343746415.3368.5.camel@ul30vt> (raw)
In-Reply-To: <CA+55aFzTzO-jzHNYSW6Hb5_kmP6aYCWH_hbAauLUn9rf9iLg_w@mail.gmail.com>

On Mon, 2012-07-30 at 22:11 -0700, Linus Torvalds wrote:
> On Mon, Jul 30, 2012 at 4:17 PM, Alex Williamson
> <alex.williamson@redhat.com> wrote:
> >
> > I'm pretty anxious to find out as well.  Linus, ping, any thoughts on
> > including this in 3.6?  Thanks,
> 
> I just pulled it, but then I unpulled again when I realized it's not a
> signed tag and it's on github.
> 
> Please, people. Do tagged releases with proper signatures if you're
> not using kernel.org or other controlled servers. In fact, I prefer
> signed tags even if you *do* use kernel.org etc.

Sorry about that, Linus.  I think this is a properly signed tag, please
let me know if I'm still screwing up.  Thanks,

Alex

The following changes since commit 2e3ee613480563a6d5c01b57d342e65cc58c06df:

  Merge tag 'writeback-proportions' of git://git.kernel.org/pub/scm/linux/kernel/git/wfg/linux (2012-07-30 22:14:04 -0700)

are available in the git repository at:


  git@github.com:awilliam/linux-vfio.git tags/vfio-for-v3.6

for you to fetch changes up to 89e1f7d4c66d85f42c3d52ea3866eb10cadf6153:

  vfio: Add PCI device driver (2012-07-31 08:16:24 -0600)

----------------------------------------------------------------
VFIO for v3.6

----------------------------------------------------------------
Alex Williamson (4):
      vfio: VFIO core
      vfio: Add documentation
      vfio: Type1 IOMMU implementation
      vfio: Add PCI device driver

 Documentation/ioctl/ioctl-number.txt |    1 +
 Documentation/vfio.txt               |  314 +++++++
 MAINTAINERS                          |    8 +
 drivers/Kconfig                      |    2 +
 drivers/Makefile                     |    1 +
 drivers/vfio/Kconfig                 |   16 +
 drivers/vfio/Makefile                |    3 +
 drivers/vfio/pci/Kconfig             |    8 +
 drivers/vfio/pci/Makefile            |    4 +
 drivers/vfio/pci/vfio_pci.c          |  579 +++++++++++++
 drivers/vfio/pci/vfio_pci_config.c   | 1540 ++++++++++++++++++++++++++++++++++
 drivers/vfio/pci/vfio_pci_intrs.c    |  740 ++++++++++++++++
 drivers/vfio/pci/vfio_pci_private.h  |   91 ++
 drivers/vfio/pci/vfio_pci_rdwr.c     |  269 ++++++
 drivers/vfio/vfio.c                  | 1420 +++++++++++++++++++++++++++++++
 drivers/vfio/vfio_iommu_type1.c      |  753 +++++++++++++++++
 include/linux/vfio.h                 |  445 ++++++++++
 17 files changed, 6194 insertions(+)
 create mode 100644 Documentation/vfio.txt
 create mode 100644 drivers/vfio/Kconfig
 create mode 100644 drivers/vfio/Makefile
 create mode 100644 drivers/vfio/pci/Kconfig
 create mode 100644 drivers/vfio/pci/Makefile
 create mode 100644 drivers/vfio/pci/vfio_pci.c
 create mode 100644 drivers/vfio/pci/vfio_pci_config.c
 create mode 100644 drivers/vfio/pci/vfio_pci_intrs.c
 create mode 100644 drivers/vfio/pci/vfio_pci_private.h
 create mode 100644 drivers/vfio/pci/vfio_pci_rdwr.c
 create mode 100644 drivers/vfio/vfio.c
 create mode 100644 drivers/vfio/vfio_iommu_type1.c
 create mode 100644 include/linux/vfio.h

  parent reply	other threads:[~2012-07-31 14:53 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-25 14:53 [GIT PULL (PATCH 0/4)] VFIO driver for v3.6 Alex Williamson
2012-07-25 14:53 ` [Qemu-devel] " Alex Williamson
2012-07-25 14:53 ` Alex Williamson
     [not found] ` <20120725142254.12800.61860.stgit-xdHQ/5r00wBBDLzU/O5InQ@public.gmane.org>
2012-07-25 14:53   ` [PATCH 1/4] vfio: VFIO core Alex Williamson
2012-07-25 14:53     ` [Qemu-devel] " Alex Williamson
2012-07-25 14:53     ` Alex Williamson
2012-07-25 14:53   ` [PATCH 2/4] vfio: Add documentation Alex Williamson
2012-07-25 14:53     ` [Qemu-devel] " Alex Williamson
2012-07-25 14:53     ` Alex Williamson
2012-07-25 14:53   ` [PATCH 3/4] vfio: Type1 IOMMU implementation Alex Williamson
2012-07-25 14:53     ` [Qemu-devel] " Alex Williamson
2012-07-25 14:53     ` Alex Williamson
2012-07-25 14:53   ` [PATCH 4/4] vfio: Add PCI device driver Alex Williamson
2012-07-25 14:53     ` [Qemu-devel] " Alex Williamson
2012-07-25 14:53     ` Alex Williamson
2012-07-26 16:14   ` [GIT PULL (PATCH 0/4) v2] VFIO driver for v3.6 Alex Williamson
2012-07-26 16:14     ` [Qemu-devel] " Alex Williamson
2012-07-26 16:14     ` Alex Williamson
2012-07-27  5:32 ` [GIT PULL (PATCH 0/4)] " Paul Mackerras
2012-07-27  5:32   ` [Qemu-devel] " Paul Mackerras
2012-07-30 23:17   ` Alex Williamson
2012-07-30 23:17     ` [Qemu-devel] " Alex Williamson
2012-07-30 23:17     ` Alex Williamson
2012-07-31  5:11     ` Linus Torvalds
2012-07-31  5:11       ` [Qemu-devel] " Linus Torvalds
2012-07-31  5:11       ` Linus Torvalds
     [not found]       ` <CA+55aFzTzO-jzHNYSW6Hb5_kmP6aYCWH_hbAauLUn9rf9iLg_w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2012-07-31 14:53         ` Alex Williamson [this message]
2012-07-31 14:53           ` [Qemu-devel] " Alex Williamson
2012-07-31 14:53           ` Alex Williamson
2012-07-31 16:33           ` Alex Williamson
2012-07-31 16:33             ` [Qemu-devel] " Alex Williamson
2012-07-31 16:33             ` 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=1343746415.3368.5.camel@ul30vt \
    --to=alex.williamson-h+wxahxf7alqt0dzr+alfa@public.gmane.org \
    --cc=B07421-KZfg59tc24xl57MIdRCFDg@public.gmane.org \
    --cc=B08248-KZfg59tc24xl57MIdRCFDg@public.gmane.org \
    --cc=agraf-l3A5Bk7waGM@public.gmane.org \
    --cc=aik-sLpHqDYs0B2HXe+LvDLADg@public.gmane.org \
    --cc=avi-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=benh-XVmvHMARGAS8U2dJNN8I7kB+6BGkLq7r@public.gmane.org \
    --cc=benve-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org \
    --cc=bhelgaas-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org \
    --cc=chrisw-69jw2NvuJkxg9hUCZPvPmw@public.gmane.org \
    --cc=david-xT8FGy+AXnRB3Ne2BGzF6laj5H9X9Tb+@public.gmane.org \
    --cc=dwmw2-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org \
    --cc=gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org \
    --cc=iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org \
    --cc=kvm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-pci-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=paulus-eUNUBHrolfbYtjvyW6yDsg@public.gmane.org \
    --cc=qemu-devel-qX2TKyscuCcdnm+yROfE0A@public.gmane.org \
    --cc=torvalds-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.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.