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: sheng.zhao@bytedance.com, zwisler@chromium.org,
	kvm@vger.kernel.org, mst@redhat.com,
	syzbot+d0d442c22fa8db45ff0e@syzkaller.appspotmail.com,
	netdev@vger.kernel.org, zwisler@google.com,
	linux-kernel@vger.kernel.org, xieyongji@bytedance.com,
	asmetanin@yandex-team.ru, prathubaronia2011@gmail.com,
	zengxianjun@bytedance.com,
	virtualization@lists.linux-foundation.org, rongtao@cestc.cn
Subject: [GIT PULL] virtio,vhost,vdpa: bugfixes
Date: Fri, 9 Jun 2023 12:17:37 -0400	[thread overview]
Message-ID: <20230609121737-mutt-send-email-mst@kernel.org> (raw)

The following changes since commit 9561de3a55bed6bdd44a12820ba81ec416e705a7:

  Linux 6.4-rc5 (2023-06-04 14:04:27 -0400)

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 07496eeab577eef1d4912b3e1b502a2b52002ac3:

  tools/virtio: use canonical ftrace path (2023-06-09 12:08:08 -0400)

----------------------------------------------------------------
virtio,vhost,vdpa: bugfixes

A bunch of fixes all over the place

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

----------------------------------------------------------------
Andrey Smetanin (1):
      vhost_net: revert upend_idx only on retriable error

Dragos Tatulea (1):
      vdpa/mlx5: Fix hang when cvq commands are triggered during device unregister

Mike Christie (2):
      vhost: Fix crash during early vhost_transport_send_pkt calls
      vhost: Fix worker hangs due to missed wake up calls

Prathu Baronia (1):
      vhost: use kzalloc() instead of kmalloc() followed by memset()

Rong Tao (2):
      tools/virtio: Fix arm64 ringtest compilation error
      tools/virtio: Add .gitignore for ringtest

Ross Zwisler (1):
      tools/virtio: use canonical ftrace path

Shannon Nelson (3):
      vhost_vdpa: tell vqs about the negotiated
      vhost: support PACKED when setting-getting vring_base
      vhost_vdpa: support PACKED when setting-getting vring_base

Sheng Zhao (1):
      vduse: avoid empty string for dev name

 drivers/vdpa/mlx5/net/mlx5_vnet.c       |  2 +-
 drivers/vdpa/vdpa_user/vduse_dev.c      |  3 ++
 drivers/vhost/net.c                     | 11 +++--
 drivers/vhost/vdpa.c                    | 34 +++++++++++++--
 drivers/vhost/vhost.c                   | 75 +++++++++++++++------------------
 drivers/vhost/vhost.h                   | 10 +++--
 kernel/vhost_task.c                     | 18 ++++----
 tools/virtio/ringtest/.gitignore        |  7 +++
 tools/virtio/ringtest/main.h            | 11 +++++
 tools/virtio/virtio-trace/README        |  2 +-
 tools/virtio/virtio-trace/trace-agent.c | 12 ++++--
 11 files changed, 120 insertions(+), 65 deletions(-)
 create mode 100644 tools/virtio/ringtest/.gitignore

_______________________________________________
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,
	asmetanin@yandex-team.ru, dtatulea@nvidia.com,
	jasowang@redhat.com, michael.christie@oracle.com, mst@redhat.com,
	prathubaronia2011@gmail.com, rongtao@cestc.cn,
	shannon.nelson@amd.com, sheng.zhao@bytedance.com,
	syzbot+d0d442c22fa8db45ff0e@syzkaller.appspotmail.com,
	xieyongji@bytedance.com, zengxianjun@bytedance.com,
	zwisler@chromium.org, zwisler@google.com
Subject: [GIT PULL] virtio,vhost,vdpa: bugfixes
Date: Fri, 9 Jun 2023 12:17:37 -0400	[thread overview]
Message-ID: <20230609121737-mutt-send-email-mst@kernel.org> (raw)

The following changes since commit 9561de3a55bed6bdd44a12820ba81ec416e705a7:

  Linux 6.4-rc5 (2023-06-04 14:04:27 -0400)

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 07496eeab577eef1d4912b3e1b502a2b52002ac3:

  tools/virtio: use canonical ftrace path (2023-06-09 12:08:08 -0400)

----------------------------------------------------------------
virtio,vhost,vdpa: bugfixes

A bunch of fixes all over the place

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

----------------------------------------------------------------
Andrey Smetanin (1):
      vhost_net: revert upend_idx only on retriable error

Dragos Tatulea (1):
      vdpa/mlx5: Fix hang when cvq commands are triggered during device unregister

Mike Christie (2):
      vhost: Fix crash during early vhost_transport_send_pkt calls
      vhost: Fix worker hangs due to missed wake up calls

Prathu Baronia (1):
      vhost: use kzalloc() instead of kmalloc() followed by memset()

Rong Tao (2):
      tools/virtio: Fix arm64 ringtest compilation error
      tools/virtio: Add .gitignore for ringtest

Ross Zwisler (1):
      tools/virtio: use canonical ftrace path

Shannon Nelson (3):
      vhost_vdpa: tell vqs about the negotiated
      vhost: support PACKED when setting-getting vring_base
      vhost_vdpa: support PACKED when setting-getting vring_base

Sheng Zhao (1):
      vduse: avoid empty string for dev name

 drivers/vdpa/mlx5/net/mlx5_vnet.c       |  2 +-
 drivers/vdpa/vdpa_user/vduse_dev.c      |  3 ++
 drivers/vhost/net.c                     | 11 +++--
 drivers/vhost/vdpa.c                    | 34 +++++++++++++--
 drivers/vhost/vhost.c                   | 75 +++++++++++++++------------------
 drivers/vhost/vhost.h                   | 10 +++--
 kernel/vhost_task.c                     | 18 ++++----
 tools/virtio/ringtest/.gitignore        |  7 +++
 tools/virtio/ringtest/main.h            | 11 +++++
 tools/virtio/virtio-trace/README        |  2 +-
 tools/virtio/virtio-trace/trace-agent.c | 12 ++++--
 11 files changed, 120 insertions(+), 65 deletions(-)
 create mode 100644 tools/virtio/ringtest/.gitignore


             reply	other threads:[~2023-06-09 16:17 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-09 16:17 Michael S. Tsirkin [this message]
2023-06-09 16:17 ` [GIT PULL] virtio,vhost,vdpa: bugfixes Michael S. Tsirkin
2023-06-09 18:19 ` pr-tracker-bot
2023-06-09 18:19   ` pr-tracker-bot
  -- strict thread matches above, loose matches on Subject: below --
2023-03-13  6:31 Michael S. Tsirkin
2023-03-13  6:31 ` Michael S. Tsirkin
2023-03-13 18:25 ` pr-tracker-bot
2023-03-13 18:25   ` pr-tracker-bot
2021-08-16  4:50 Michael S. Tsirkin
2021-08-16  4:50 ` Michael S. Tsirkin
2021-08-16 16:40 ` pr-tracker-bot
2021-08-16 16:40   ` 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=20230609121737-mutt-send-email-mst@kernel.org \
    --to=mst@redhat.com \
    --cc=asmetanin@yandex-team.ru \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=prathubaronia2011@gmail.com \
    --cc=rongtao@cestc.cn \
    --cc=sheng.zhao@bytedance.com \
    --cc=syzbot+d0d442c22fa8db45ff0e@syzkaller.appspotmail.com \
    --cc=torvalds@linux-foundation.org \
    --cc=virtualization@lists.linux-foundation.org \
    --cc=xieyongji@bytedance.com \
    --cc=zengxianjun@bytedance.com \
    --cc=zwisler@chromium.org \
    --cc=zwisler@google.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.