All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: kvm@vger.kernel.org, virtualization@lists.linux-foundation.org,
	netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
	changpeng.liu@intel.com, dongli.zhang@oracle.com,
	dverkamp@chromium.org, jasowang@redhat.com, mst@redhat.com,
	pbonzini@redhat.com, stefanha@redhat.com, wangyan122@huawei.com
Subject: [PULL] virtio, vhost: features, fixes, cleanups
Date: Wed, 2 Jan 2019 16:23:23 -0500	[thread overview]
Message-ID: <20190102162323-mutt-send-email-mst@kernel.org> (raw)

The following changes since commit 7566ec393f4161572ba6f11ad5171fd5d59b0fbd:

  Linux 4.20-rc7 (2018-12-16 15:46:55 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git tags/for_linus

for you to fetch changes up to a691ffb46edd7cb12a17ff0965ab59dbc95f48de:

  vhost: correct the related warning message (2018-12-19 18:23:50 -0500)

----------------------------------------------------------------
virtio, vhost: features, fixes, cleanups

discard in virtio blk
misc fixes and cleanups

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

----------------------------------------------------------------
Changpeng Liu (1):
      virtio_blk: add discard and write zeroes support

Dongli Zhang (1):
      virtio: remove deprecated VIRTIO_PCI_CONFIG()

Michael S. Tsirkin (1):
      virtio: fix test build after uio.h change

Paolo Bonzini (1):
      vhost: split structs into a separate header file

Stefan Hajnoczi (1):
      vhost/vsock: switch to a mutex for vhost_vsock_hash

wangyan (1):
      vhost: correct the related warning message

 drivers/block/virtio_blk.c         |  83 +++++++++++++++++++++++-
 drivers/vhost/scsi.c               |   4 +-
 drivers/vhost/vsock.c              |  16 ++---
 drivers/virtio/virtio_pci_legacy.c |   6 +-
 include/uapi/linux/vhost.h         | 113 +-------------------------------
 include/uapi/linux/vhost_types.h   | 128 +++++++++++++++++++++++++++++++++++++
 include/uapi/linux/virtio_blk.h    |  54 ++++++++++++++++
 tools/virtio/linux/kernel.h        |   4 ++
 8 files changed, 283 insertions(+), 125 deletions(-)
 create mode 100644 include/uapi/linux/vhost_types.h

WARNING: multiple messages have this Message-ID (diff)
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: kvm@vger.kernel.org, mst@redhat.com, netdev@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	virtualization@lists.linux-foundation.org, stefanha@redhat.com,
	pbonzini@redhat.com, changpeng.liu@intel.com,
	wangyan122@huawei.com
Subject: [PULL] virtio, vhost: features, fixes, cleanups
Date: Wed, 2 Jan 2019 16:23:23 -0500	[thread overview]
Message-ID: <20190102162323-mutt-send-email-mst@kernel.org> (raw)

The following changes since commit 7566ec393f4161572ba6f11ad5171fd5d59b0fbd:

  Linux 4.20-rc7 (2018-12-16 15:46:55 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git tags/for_linus

for you to fetch changes up to a691ffb46edd7cb12a17ff0965ab59dbc95f48de:

  vhost: correct the related warning message (2018-12-19 18:23:50 -0500)

----------------------------------------------------------------
virtio, vhost: features, fixes, cleanups

discard in virtio blk
misc fixes and cleanups

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

----------------------------------------------------------------
Changpeng Liu (1):
      virtio_blk: add discard and write zeroes support

Dongli Zhang (1):
      virtio: remove deprecated VIRTIO_PCI_CONFIG()

Michael S. Tsirkin (1):
      virtio: fix test build after uio.h change

Paolo Bonzini (1):
      vhost: split structs into a separate header file

Stefan Hajnoczi (1):
      vhost/vsock: switch to a mutex for vhost_vsock_hash

wangyan (1):
      vhost: correct the related warning message

 drivers/block/virtio_blk.c         |  83 +++++++++++++++++++++++-
 drivers/vhost/scsi.c               |   4 +-
 drivers/vhost/vsock.c              |  16 ++---
 drivers/virtio/virtio_pci_legacy.c |   6 +-
 include/uapi/linux/vhost.h         | 113 +-------------------------------
 include/uapi/linux/vhost_types.h   | 128 +++++++++++++++++++++++++++++++++++++
 include/uapi/linux/virtio_blk.h    |  54 ++++++++++++++++
 tools/virtio/linux/kernel.h        |   4 ++
 8 files changed, 283 insertions(+), 125 deletions(-)
 create mode 100644 include/uapi/linux/vhost_types.h

             reply	other threads:[~2019-01-02 21:23 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-02 21:23 Michael S. Tsirkin [this message]
2019-01-02 21:23 ` [PULL] virtio, vhost: features, fixes, cleanups Michael S. Tsirkin
2019-01-03  3:05 ` pr-tracker-bot

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=20190102162323-mutt-send-email-mst@kernel.org \
    --to=mst@redhat.com \
    --cc=changpeng.liu@intel.com \
    --cc=dongli.zhang@oracle.com \
    --cc=dverkamp@chromium.org \
    --cc=jasowang@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=pbonzini@redhat.com \
    --cc=stefanha@redhat.com \
    --cc=torvalds@linux-foundation.org \
    --cc=virtualization@lists.linux-foundation.org \
    --cc=wangyan122@huawei.com \
    /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.