All of lore.kernel.org
 help / color / mirror / Atom feed
From: Rusty Russell <rusty@rustcorp.com.au>
To: torvalds@linux-foundation.org
Cc: Stratos Psomadakis <psomas@cslab.ece.ntua.gr>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	lkml - Kernel Mailing List <linux-kernel@vger.kernel.org>,
	virtualization@lists.linux-foundation.org,
	Sasha Levin <levinsasha928@gmail.com>,
	Amit Shah <amit.shah@redhat.com>,
	Jacek Galowicz <jacek@galowicz.de>,
	Christoph Hellwig <hch@lst.de>, Davidlohr Bueso <dave@gnu.org>
Subject: [PULL] virtio and lguest
Date: Thu, 12 Jan 2012 15:52:46 +1030	[thread overview]
Message-ID: <87lipd4hqx.fsf@rustcorp.com.au> (raw)

(I called the tag to-linus.  I think it worked).

To git@github.com:rustyrussell/linux.git
 + 3ed0016...b6c96c0 master -> master (forced update)
 + 815645d...f8e8df5 to-linus -> to-linus (forced update)
+ git request-pull remotes/origin/master git://github.com/rustyrussell/linux.git
The following changes since commit e343a895a9f342f239c5e3c5ffc6c0b1707e6244:

  Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost (2012-01-10 18:04:27 -0800)

are available in the git repository at:

  git://github.com/rustyrussell/linux.git master

Amit Shah (12):
      virtio: pci: switch to new PM API
      virtio: pci: add PM notification handlers for restore, freeze, thaw, poweroff
      virtio: console: Move vq and vq buf removal into separate functions
      virtio: console: Add freeze and restore handlers to support S4
      virtio: console: Disable callbacks for virtqueues at start of S4 freeze
      virtio: blk: Move vq initialization to separate function
      virtio: blk: Add freeze, restore handlers to support S4
      virtio: net: Move vq initialization into separate function
      virtio: net: Move vq and vq buf removal into separate function
      virtio: net: Add freeze, restore handlers to support S4
      virtio: balloon: Move vq initialization into separate function
      virtio: balloon: Add freeze, restore handlers to support S4

Davidlohr Bueso (1):
      lguest: move the lguest tool to the tools directory

Jacek Galowicz (1):
      lguest: switch segment-voodoo-numbers to readable symbols

Michael S. Tsirkin (1):
      virtio_blk: fix config handler race

Rusty Russell (7):
      virtio: harsher barriers for rpmsg.
      virtio: document functions better.
      virtio: rename virtqueue_add_buf_gfp to virtqueue_add_buf
      virtio: support unlocked queue kick
      virtio: avoid modulus operation.
      virtio: expose added descriptors immediately.
      virtio: add debugging if driver doesn't kick.

Sasha Levin (1):
      virtio-balloon: Trivial cleanups

Stratos Psomadakis (1):
      lguest: Make sure interrupt is allocated ok by lguest_setup_irq

 arch/x86/lguest/boot.c                             |   21 +-
 drivers/block/virtio_blk.c                         |   87 +++++++-
 drivers/char/hw_random/virtio-rng.c                |    2 +-
 drivers/char/virtio_console.c                      |  140 +++++++++---
 drivers/lguest/Makefile                            |    2 +-
 drivers/lguest/lguest_device.c                     |   18 +-
 drivers/lguest/segments.c                          |   28 ++-
 drivers/net/virtio_net.c                           |  125 ++++++++---
 drivers/s390/kvm/kvm_virtio.c                      |    2 +-
 drivers/virtio/virtio_balloon.c                    |  108 +++++++--
 drivers/virtio/virtio_mmio.c                       |    4 +-
 drivers/virtio/virtio_pci.c                        |  110 +++++++++-
 drivers/virtio/virtio_ring.c                       |  245 +++++++++++++++++---
 include/linux/virtio.h                             |   75 ++-----
 include/linux/virtio_ring.h                        |    1 +
 net/9p/trans_virtio.c                              |    6 +-
 {Documentation/virtual => tools}/lguest/.gitignore |    0
 {Documentation/virtual => tools}/lguest/Makefile   |    0
 {Documentation/virtual => tools}/lguest/extract    |    0
 {Documentation/virtual => tools}/lguest/lguest.c   |    2 +-
 {Documentation/virtual => tools}/lguest/lguest.txt |    0
 tools/virtio/linux/virtio.h                        |   22 +--
 tools/virtio/virtio_test.c                         |    6 +-
 23 files changed, 757 insertions(+), 247 deletions(-)
 rename {Documentation/virtual => tools}/lguest/.gitignore (100%)
 rename {Documentation/virtual => tools}/lguest/Makefile (100%)
 rename {Documentation/virtual => tools}/lguest/extract (100%)
 rename {Documentation/virtual => tools}/lguest/lguest.c (99%)
 rename {Documentation/virtual => tools}/lguest/lguest.txt (100%)

WARNING: multiple messages have this Message-ID (diff)
From: Rusty Russell <rusty@rustcorp.com.au>
To: torvalds@linux-foundation.org
Cc: lkml - Kernel Mailing List <linux-kernel@vger.kernel.org>
Cc: Amit Shah <amit.shah@redhat.com>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Davidlohr Bueso <dave@gnu.org>
Cc: Jacek Galowicz <jacek@galowicz.de>
Cc: "Michael S. Tsirkin" <mst@redhat.com>
Cc: Sasha Levin <levinsasha928@gmail.com>
Cc: Stratos Psomadakis <psomas@cslab.ece.ntua.gr>
Cc: virtualization@lists.linux-foundation.org
Subject: [PULL] virtio and lguest
Date: Thu, 12 Jan 2012 15:52:46 +1030	[thread overview]
Message-ID: <87lipd4hqx.fsf@rustcorp.com.au> (raw)

(I called the tag to-linus.  I think it worked).

To git@github.com:rustyrussell/linux.git
 + 3ed0016...b6c96c0 master -> master (forced update)
 + 815645d...f8e8df5 to-linus -> to-linus (forced update)
+ git request-pull remotes/origin/master git://github.com/rustyrussell/linux.git
The following changes since commit e343a895a9f342f239c5e3c5ffc6c0b1707e6244:

  Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost (2012-01-10 18:04:27 -0800)

are available in the git repository at:

  git://github.com/rustyrussell/linux.git master

Amit Shah (12):
      virtio: pci: switch to new PM API
      virtio: pci: add PM notification handlers for restore, freeze, thaw, poweroff
      virtio: console: Move vq and vq buf removal into separate functions
      virtio: console: Add freeze and restore handlers to support S4
      virtio: console: Disable callbacks for virtqueues at start of S4 freeze
      virtio: blk: Move vq initialization to separate function
      virtio: blk: Add freeze, restore handlers to support S4
      virtio: net: Move vq initialization into separate function
      virtio: net: Move vq and vq buf removal into separate function
      virtio: net: Add freeze, restore handlers to support S4
      virtio: balloon: Move vq initialization into separate function
      virtio: balloon: Add freeze, restore handlers to support S4

Davidlohr Bueso (1):
      lguest: move the lguest tool to the tools directory

Jacek Galowicz (1):
      lguest: switch segment-voodoo-numbers to readable symbols

Michael S. Tsirkin (1):
      virtio_blk: fix config handler race

Rusty Russell (7):
      virtio: harsher barriers for rpmsg.
      virtio: document functions better.
      virtio: rename virtqueue_add_buf_gfp to virtqueue_add_buf
      virtio: support unlocked queue kick
      virtio: avoid modulus operation.
      virtio: expose added descriptors immediately.
      virtio: add debugging if driver doesn't kick.

Sasha Levin (1):
      virtio-balloon: Trivial cleanups

Stratos Psomadakis (1):
      lguest: Make sure interrupt is allocated ok by lguest_setup_irq

 arch/x86/lguest/boot.c                             |   21 +-
 drivers/block/virtio_blk.c                         |   87 +++++++-
 drivers/char/hw_random/virtio-rng.c                |    2 +-
 drivers/char/virtio_console.c                      |  140 +++++++++---
 drivers/lguest/Makefile                            |    2 +-
 drivers/lguest/lguest_device.c                     |   18 +-
 drivers/lguest/segments.c                          |   28 ++-
 drivers/net/virtio_net.c                           |  125 ++++++++---
 drivers/s390/kvm/kvm_virtio.c                      |    2 +-
 drivers/virtio/virtio_balloon.c                    |  108 +++++++--
 drivers/virtio/virtio_mmio.c                       |    4 +-
 drivers/virtio/virtio_pci.c                        |  110 +++++++++-
 drivers/virtio/virtio_ring.c                       |  245 +++++++++++++++++---
 include/linux/virtio.h                             |   75 ++-----
 include/linux/virtio_ring.h                        |    1 +
 net/9p/trans_virtio.c                              |    6 +-
 {Documentation/virtual => tools}/lguest/.gitignore |    0
 {Documentation/virtual => tools}/lguest/Makefile   |    0
 {Documentation/virtual => tools}/lguest/extract    |    0
 {Documentation/virtual => tools}/lguest/lguest.c   |    2 +-
 {Documentation/virtual => tools}/lguest/lguest.txt |    0
 tools/virtio/linux/virtio.h                        |   22 +--
 tools/virtio/virtio_test.c                         |    6 +-
 23 files changed, 757 insertions(+), 247 deletions(-)
 rename {Documentation/virtual => tools}/lguest/.gitignore (100%)
 rename {Documentation/virtual => tools}/lguest/Makefile (100%)
 rename {Documentation/virtual => tools}/lguest/extract (100%)
 rename {Documentation/virtual => tools}/lguest/lguest.c (99%)
 rename {Documentation/virtual => tools}/lguest/lguest.txt (100%)


             reply	other threads:[~2012-01-12  5:22 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-01-12  5:22 Rusty Russell [this message]
2012-01-12  5:22 ` [PULL] virtio and lguest Rusty Russell
2012-01-13  0:29 ` Linus Torvalds
2012-01-13  0:29   ` Linus Torvalds
2012-01-13  2:29   ` Rusty Russell
2012-01-13  2:29     ` Rusty Russell
2012-01-13 10:48   ` Amit Shah
2012-01-13 10:48     ` Amit Shah

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=87lipd4hqx.fsf@rustcorp.com.au \
    --to=rusty@rustcorp.com.au \
    --cc=amit.shah@redhat.com \
    --cc=dave@gnu.org \
    --cc=hch@lst.de \
    --cc=jacek@galowicz.de \
    --cc=levinsasha928@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mst@redhat.com \
    --cc=psomas@cslab.ece.ntua.gr \
    --cc=torvalds@linux-foundation.org \
    --cc=virtualization@lists.linux-foundation.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.