From: "Michael S. Tsirkin" <mst@redhat.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: xiujianfeng@huawei.com, kvm@vger.kernel.org, mst@redhat.com,
netdev@vger.kernel.org, wangdeming@inspur.com,
linux-kernel@vger.kernel.org,
virtualization@lists.linux-foundation.org,
angus.chen@jaguarmicro.com, lingshan.zhu@intel.com,
gavinl@nvidia.com
Subject: [GIT PULL] virtio: fixes, features
Date: Mon, 10 Oct 2022 13:20:30 -0400 [thread overview]
Message-ID: <20221010132030-mutt-send-email-mst@kernel.org> (raw)
The following changes since commit 4fe89d07dcc2804c8b562f6c7896a45643d34b2f:
Linux 6.0 (2022-10-02 14:09:07 -0700)
are available in the Git repository at:
https://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git tags/for_linus
for you to fetch changes up to 71491c54eafa318fdd24a1f26a1c82b28e1ac21d:
virtio_pci: don't try to use intxif pin is zero (2022-10-07 20:00:44 -0400)
----------------------------------------------------------------
virtio: fixes, features
9k mtu perf improvements
vdpa feature provisioning
virtio blk SECURE ERASE support
Fixes, cleanups all over the place.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
----------------------------------------------------------------
Alvaro Karsz (1):
virtio_blk: add SECURE ERASE command support
Angus Chen (1):
virtio_pci: don't try to use intxif pin is zero
Deming Wang (2):
virtio_ring: split: Operators use unified style
virtio_ring: make vring_alloc_queue_packed prettier
Gavin Li (2):
virtio-net: introduce and use helper function for guest gso support checks
virtio-net: use mtu size as buffer length for big packets
Jason Wang (3):
vdpa: device feature provisioning
vdpa_sim_net: support feature provisioning
vp_vdpa: support feature provisioning
Michael S. Tsirkin (1):
virtio: drop vp_legacy_set_queue_size
Xiu Jianfeng (1):
vhost: add __init/__exit annotations to module init/exit funcs
Zhu Lingshan (6):
vDPA: allow userspace to query features of a vDPA device
vDPA: only report driver features if FEATURES_OK is set
vDPA: check VIRTIO_NET_F_RSS for max_virtqueue_paris's presence
vDPA: check virtio device features to detect MQ
vDPA: fix spars cast warning in vdpa_dev_net_mq_config_fill
vDPA: conditionally read MTU and MAC in dev cfg space
drivers/block/virtio_blk.c | 110 +++++++++++++++++++++++++++++------
drivers/net/virtio_net.c | 48 ++++++++++-----
drivers/vdpa/vdpa.c | 73 ++++++++++++++++++-----
drivers/vdpa/vdpa_sim/vdpa_sim.c | 12 +++-
drivers/vdpa/vdpa_sim/vdpa_sim.h | 3 +-
drivers/vdpa/vdpa_sim/vdpa_sim_blk.c | 2 +-
drivers/vdpa/vdpa_sim/vdpa_sim_net.c | 5 +-
drivers/vdpa/virtio_pci/vp_vdpa.c | 22 ++++++-
drivers/vhost/net.c | 4 +-
drivers/virtio/virtio_pci_common.c | 3 +
drivers/virtio/virtio_ring.c | 8 +--
include/linux/vdpa.h | 1 +
include/linux/virtio_pci_legacy.h | 2 -
include/uapi/linux/vdpa.h | 6 ++
include/uapi/linux/virtio_blk.h | 19 ++++++
15 files changed, 253 insertions(+), 65 deletions(-)
_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization
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, virtualization@lists.linux-foundation.org,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
alvaro.karsz@solid-run.com, angus.chen@jaguarmicro.com,
gavinl@nvidia.com, jasowang@redhat.com, lingshan.zhu@intel.com,
mst@redhat.com, wangdeming@inspur.com, xiujianfeng@huawei.com
Subject: [GIT PULL] virtio: fixes, features
Date: Mon, 10 Oct 2022 13:20:30 -0400 [thread overview]
Message-ID: <20221010132030-mutt-send-email-mst@kernel.org> (raw)
The following changes since commit 4fe89d07dcc2804c8b562f6c7896a45643d34b2f:
Linux 6.0 (2022-10-02 14:09:07 -0700)
are available in the Git repository at:
https://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git tags/for_linus
for you to fetch changes up to 71491c54eafa318fdd24a1f26a1c82b28e1ac21d:
virtio_pci: don't try to use intxif pin is zero (2022-10-07 20:00:44 -0400)
----------------------------------------------------------------
virtio: fixes, features
9k mtu perf improvements
vdpa feature provisioning
virtio blk SECURE ERASE support
Fixes, cleanups all over the place.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
----------------------------------------------------------------
Alvaro Karsz (1):
virtio_blk: add SECURE ERASE command support
Angus Chen (1):
virtio_pci: don't try to use intxif pin is zero
Deming Wang (2):
virtio_ring: split: Operators use unified style
virtio_ring: make vring_alloc_queue_packed prettier
Gavin Li (2):
virtio-net: introduce and use helper function for guest gso support checks
virtio-net: use mtu size as buffer length for big packets
Jason Wang (3):
vdpa: device feature provisioning
vdpa_sim_net: support feature provisioning
vp_vdpa: support feature provisioning
Michael S. Tsirkin (1):
virtio: drop vp_legacy_set_queue_size
Xiu Jianfeng (1):
vhost: add __init/__exit annotations to module init/exit funcs
Zhu Lingshan (6):
vDPA: allow userspace to query features of a vDPA device
vDPA: only report driver features if FEATURES_OK is set
vDPA: check VIRTIO_NET_F_RSS for max_virtqueue_paris's presence
vDPA: check virtio device features to detect MQ
vDPA: fix spars cast warning in vdpa_dev_net_mq_config_fill
vDPA: conditionally read MTU and MAC in dev cfg space
drivers/block/virtio_blk.c | 110 +++++++++++++++++++++++++++++------
drivers/net/virtio_net.c | 48 ++++++++++-----
drivers/vdpa/vdpa.c | 73 ++++++++++++++++++-----
drivers/vdpa/vdpa_sim/vdpa_sim.c | 12 +++-
drivers/vdpa/vdpa_sim/vdpa_sim.h | 3 +-
drivers/vdpa/vdpa_sim/vdpa_sim_blk.c | 2 +-
drivers/vdpa/vdpa_sim/vdpa_sim_net.c | 5 +-
drivers/vdpa/virtio_pci/vp_vdpa.c | 22 ++++++-
drivers/vhost/net.c | 4 +-
drivers/virtio/virtio_pci_common.c | 3 +
drivers/virtio/virtio_ring.c | 8 +--
include/linux/vdpa.h | 1 +
include/linux/virtio_pci_legacy.h | 2 -
include/uapi/linux/vdpa.h | 6 ++
include/uapi/linux/virtio_blk.h | 19 ++++++
15 files changed, 253 insertions(+), 65 deletions(-)
next reply other threads:[~2022-10-10 17:20 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-10 17:20 Michael S. Tsirkin [this message]
2022-10-10 17:20 ` [GIT PULL] virtio: fixes, features Michael S. Tsirkin
2022-10-10 21:23 ` pr-tracker-bot
2022-10-10 21:23 ` pr-tracker-bot
2022-10-12 6:21 ` Michael Ellerman
2022-10-12 6:21 ` Michael Ellerman
2022-10-12 6:21 ` Michael Ellerman
2022-10-12 6:45 ` Angus Chen
2022-10-12 6:45 ` Angus Chen
2022-10-12 7:35 ` Angus Chen
2022-10-12 7:35 ` Angus Chen
2022-10-12 11:11 ` Michael S. Tsirkin
2022-10-12 11:11 ` Michael S. Tsirkin
2022-10-12 11:11 ` Michael S. Tsirkin
2022-10-12 13:28 ` Michael Ellerman
2022-10-12 13:28 ` Michael Ellerman
2022-10-12 13:28 ` Michael Ellerman
2022-10-12 14:33 ` Michael Ellerman
2022-10-12 14:33 ` Michael Ellerman
2022-10-12 14:33 ` Michael Ellerman
2022-10-12 15:51 ` Michael S. Tsirkin
2022-10-12 15:51 ` Michael S. Tsirkin
2022-10-12 15:51 ` Michael S. Tsirkin
2022-10-12 17:22 ` Linus Torvalds
2022-10-12 17:22 ` Linus Torvalds
2022-10-12 17:22 ` Linus Torvalds
2022-10-12 21:06 ` Arnd Bergmann
2022-10-12 21:06 ` Arnd Bergmann
2022-10-12 21:06 ` Arnd Bergmann
2022-10-12 22:08 ` Michael S. Tsirkin
2022-10-12 22:08 ` Michael S. Tsirkin
2022-10-12 22:08 ` Michael S. Tsirkin
2022-10-13 6:28 ` Arnd Bergmann
2022-10-13 6:28 ` Arnd Bergmann
2022-10-13 6:28 ` Arnd Bergmann
2022-10-13 17:19 ` Linus Torvalds
2022-10-13 17:19 ` Linus Torvalds
2022-10-13 17:19 ` Linus Torvalds
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=20221010132030-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=angus.chen@jaguarmicro.com \
--cc=gavinl@nvidia.com \
--cc=kvm@vger.kernel.org \
--cc=lingshan.zhu@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=torvalds@linux-foundation.org \
--cc=virtualization@lists.linux-foundation.org \
--cc=wangdeming@inspur.com \
--cc=xiujianfeng@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.