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: sfr@canb.auug.org.au, thuth@redhat.com, kvm@vger.kernel.org,
	netdev@vger.kernel.org, pmorel@linux.vnet.ibm.com,
	linux-kernel@vger.kernel.org,
	virtualization@lists.linux-foundation.org,
	borntraeger@de.ibm.com, yan@daynix.com, imammedo@redhat.com
Subject: Re: [PULL] vhost: cleanups and fixes
Date: Wed, 15 Jul 2015 14:26:43 +0300	[thread overview]
Message-ID: <20150715142438-mutt-send-email-mst@redhat.com> (raw)
In-Reply-To: <20150715135024-mutt-send-email-mst@redhat.com>

On Wed, Jul 15, 2015 at 01:50:24PM +0300, Michael S. Tsirkin wrote:
> The following changes since commit 59a5b0f7bf74f88da6670bcbf924d8cc1e75b1ee:
> 
>   virtio-pci: alloc only resources actually used. (2015-06-24 08:15:09 +0200)
> 
> 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 c9ce42f72fd0ba180fd35539829e4139dca31494:
> 
>   vhost: add max_mem_regions module parameter (2015-07-13 23:17:19 +0300)
> 
> ----------------------------------------------------------------
> virtio/vhost: fixes for 4.2
> 
> Bugfixes and documentation fixes. Igor's patch that allows
> users to tweak memory table size is borderline,
> but it does fix known crashes, so I merged it.
> 
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

Ouch.  Turns out there was a bug in error handling here.
Linus, please don't pull this one yet, I will fix it up and
resend. I've deleted the tag for now so it won't get pulled
by mistake.

> ----------------------------------------------------------------
> Cornelia Huck (2):
>       MAINTAINERS: separate section for s390 virtio drivers
>       virtio/s390: rename drivers/s390/kvm -> drivers/s390/virtio
> 
> Igor Mammedov (3):
>       vhost: use binary search instead of linear in find_region()
>       vhost: extend memory regions allocation to vmalloc
>       vhost: add max_mem_regions module parameter
> 
> Michael S. Tsirkin (2):
>       virtio_net: document VIRTIO_NET_CTRL_GUEST_OFFLOADS
>       virtio: define virtio_pci_cfg_cap in header.
> 
> Pierre Morel (1):
>       9p/trans_virtio: reset virtio device on remove
> 
> Stephen Rothwell (1):
>       virtio scsi: fix unused variable warning
> 
> Thomas Huth (1):
>       virtio: Fix typecast of pointer in vring_init()
> 
>  include/uapi/linux/virtio_net.h           | 16 ++++++++
>  include/uapi/linux/virtio_pci.h           |  6 +++
>  include/uapi/linux/virtio_ring.h          |  5 ++-
>  drivers/s390/{kvm => virtio}/kvm_virtio.c |  0
>  drivers/s390/{kvm => virtio}/virtio_ccw.c |  0
>  drivers/scsi/virtio_scsi.c                |  4 +-
>  drivers/vhost/vhost.c                     | 67 +++++++++++++++++++++++--------
>  net/9p/trans_virtio.c                     |  1 +
>  MAINTAINERS                               | 10 ++++-
>  drivers/s390/Makefile                     |  2 +-
>  drivers/s390/{kvm => virtio}/Makefile     |  0
>  11 files changed, 91 insertions(+), 20 deletions(-)
>  rename drivers/s390/{kvm => virtio}/kvm_virtio.c (100%)
>  rename drivers/s390/{kvm => virtio}/virtio_ccw.c (100%)
>  rename drivers/s390/{kvm => virtio}/Makefile (100%)

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,
	borntraeger@de.ibm.com, cornelia.huck@de.ibm.com,
	imammedo@redhat.com, pmorel@linux.vnet.ibm.com,
	sfr@canb.auug.org.au, thuth@redhat.com, yan@daynix.com
Subject: Re: [PULL] vhost: cleanups and fixes
Date: Wed, 15 Jul 2015 14:26:43 +0300	[thread overview]
Message-ID: <20150715142438-mutt-send-email-mst@redhat.com> (raw)
In-Reply-To: <20150715135024-mutt-send-email-mst@redhat.com>

On Wed, Jul 15, 2015 at 01:50:24PM +0300, Michael S. Tsirkin wrote:
> The following changes since commit 59a5b0f7bf74f88da6670bcbf924d8cc1e75b1ee:
> 
>   virtio-pci: alloc only resources actually used. (2015-06-24 08:15:09 +0200)
> 
> 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 c9ce42f72fd0ba180fd35539829e4139dca31494:
> 
>   vhost: add max_mem_regions module parameter (2015-07-13 23:17:19 +0300)
> 
> ----------------------------------------------------------------
> virtio/vhost: fixes for 4.2
> 
> Bugfixes and documentation fixes. Igor's patch that allows
> users to tweak memory table size is borderline,
> but it does fix known crashes, so I merged it.
> 
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

Ouch.  Turns out there was a bug in error handling here.
Linus, please don't pull this one yet, I will fix it up and
resend. I've deleted the tag for now so it won't get pulled
by mistake.

> ----------------------------------------------------------------
> Cornelia Huck (2):
>       MAINTAINERS: separate section for s390 virtio drivers
>       virtio/s390: rename drivers/s390/kvm -> drivers/s390/virtio
> 
> Igor Mammedov (3):
>       vhost: use binary search instead of linear in find_region()
>       vhost: extend memory regions allocation to vmalloc
>       vhost: add max_mem_regions module parameter
> 
> Michael S. Tsirkin (2):
>       virtio_net: document VIRTIO_NET_CTRL_GUEST_OFFLOADS
>       virtio: define virtio_pci_cfg_cap in header.
> 
> Pierre Morel (1):
>       9p/trans_virtio: reset virtio device on remove
> 
> Stephen Rothwell (1):
>       virtio scsi: fix unused variable warning
> 
> Thomas Huth (1):
>       virtio: Fix typecast of pointer in vring_init()
> 
>  include/uapi/linux/virtio_net.h           | 16 ++++++++
>  include/uapi/linux/virtio_pci.h           |  6 +++
>  include/uapi/linux/virtio_ring.h          |  5 ++-
>  drivers/s390/{kvm => virtio}/kvm_virtio.c |  0
>  drivers/s390/{kvm => virtio}/virtio_ccw.c |  0
>  drivers/scsi/virtio_scsi.c                |  4 +-
>  drivers/vhost/vhost.c                     | 67 +++++++++++++++++++++++--------
>  net/9p/trans_virtio.c                     |  1 +
>  MAINTAINERS                               | 10 ++++-
>  drivers/s390/Makefile                     |  2 +-
>  drivers/s390/{kvm => virtio}/Makefile     |  0
>  11 files changed, 91 insertions(+), 20 deletions(-)
>  rename drivers/s390/{kvm => virtio}/kvm_virtio.c (100%)
>  rename drivers/s390/{kvm => virtio}/virtio_ccw.c (100%)
>  rename drivers/s390/{kvm => virtio}/Makefile (100%)

  reply	other threads:[~2015-07-15 11:26 UTC|newest]

Thread overview: 125+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-15 10:50 [PULL] vhost: cleanups and fixes Michael S. Tsirkin
2015-07-15 10:50 ` Michael S. Tsirkin
2015-07-15 11:26 ` Michael S. Tsirkin [this message]
2015-07-15 11:26   ` Michael S. Tsirkin
  -- strict thread matches above, loose matches on Subject: below --
2020-02-10  6:02 Michael S. Tsirkin
2020-02-11  2:07 ` Linus Torvalds
2020-02-11  2:07   ` Linus Torvalds
2020-02-07  7:39 Michael S. Tsirkin
2019-10-28  8:29 Michael S. Tsirkin
2019-10-15 21:19 Michael S. Tsirkin
2019-10-15 22:25 ` pr-tracker-bot
2019-10-15 22:25 ` pr-tracker-bot
2019-10-15 21:19 Michael S. Tsirkin
2019-06-03 14:30 Michael S. Tsirkin
2019-05-14 21:11 Michael S. Tsirkin
2019-05-14 21:11 Michael S. Tsirkin
2019-05-14 21:20 ` pr-tracker-bot
2019-05-14 21:20 ` pr-tracker-bot
2018-11-01 21:19 Michael S. Tsirkin
2018-11-01 21:19 ` Michael S. Tsirkin
2018-11-01 21:19 ` Michael S. Tsirkin
2018-11-01 21:44 ` Linus Torvalds
2018-11-01 21:44 ` Linus Torvalds
2018-11-01 23:00 ` Kees Cook
2018-11-01 23:00   ` Kees Cook
2018-11-01 23:06   ` Linus Torvalds
2018-11-01 23:55     ` Michael S. Tsirkin
2018-11-01 23:55     ` Michael S. Tsirkin
2018-11-02 11:46     ` Mark Rutland
2018-11-02 11:46     ` Mark Rutland
2018-11-02 13:04       ` Michael S. Tsirkin
2018-11-02 13:04       ` Michael S. Tsirkin
2018-11-02 16:14         ` Linus Torvalds
2018-11-02 16:59           ` Michael S. Tsirkin
2018-11-02 16:59           ` Michael S. Tsirkin
2018-11-02 17:10             ` Linus Torvalds
2018-11-02 17:10               ` Linus Torvalds
2018-11-02 17:15               ` Linus Torvalds
2018-11-02 17:15               ` Linus Torvalds
2018-11-02 19:01                 ` Al Viro
2018-11-02 19:01                 ` Al Viro
2018-11-02 17:21               ` Michael S. Tsirkin
2018-11-02 18:02                 ` Linus Torvalds
2018-11-02 18:12                   ` Michael S. Tsirkin
2018-11-02 18:12                   ` Michael S. Tsirkin
2018-11-02 18:02                 ` Linus Torvalds
2018-11-02 17:21               ` Michael S. Tsirkin
2018-11-02 16:14         ` Linus Torvalds
2018-11-30 13:44     ` Michael S. Tsirkin
2018-11-30 13:44       ` Michael S. Tsirkin
2018-11-30 19:01       ` Bijan Mottahedeh
2018-11-30 19:55         ` Michael S. Tsirkin
2018-11-30 19:55         ` Michael S. Tsirkin
2018-11-01 23:06   ` Linus Torvalds
2018-11-01 23:38   ` Michael S. Tsirkin
2018-11-01 23:38     ` Michael S. Tsirkin
2018-11-01 23:00 ` Kees Cook
2018-06-11 16:23 Michael S. Tsirkin
2018-06-11 16:23 ` Michael S. Tsirkin
2018-06-11 18:32 ` Linus Torvalds
2018-06-11 18:32   ` Linus Torvalds
2018-06-11 18:44   ` Linus Torvalds
2018-06-11 18:44     ` Linus Torvalds
2018-06-12  1:36     ` Michael S. Tsirkin
2018-06-12  1:36       ` Michael S. Tsirkin
2018-06-12  1:59       ` Linus Torvalds
2018-06-12  1:59         ` Linus Torvalds
2018-06-12 11:05         ` Wei Wang
2018-06-12 11:05           ` Wei Wang
2018-06-14 15:01           ` Nitesh Narayan Lal
2018-06-15  3:53             ` Wei Wang
2018-06-15  3:53               ` Wei Wang
2018-06-12  1:57   ` Michael S. Tsirkin
2018-06-12  1:57     ` Michael S. Tsirkin
2017-12-08 15:47 Michael S. Tsirkin
2017-12-08 15:47 Michael S. Tsirkin
2017-12-04 13:25 Michael S. Tsirkin
2017-08-25 18:47 Michael S. Tsirkin
2017-04-10 21:36 Michael S. Tsirkin
2017-04-10 21:36 ` Michael S. Tsirkin
2017-03-02  5:49 Michael S. Tsirkin
2017-03-02  5:49 ` Michael S. Tsirkin
2017-02-03 21:43 Michael S. Tsirkin
2017-02-03 21:43 ` Michael S. Tsirkin
2017-01-23 15:05 Michael S. Tsirkin
2017-01-23 15:05 ` Michael S. Tsirkin
2017-01-23 21:50 ` Linus Torvalds
2017-01-23 21:50 ` Linus Torvalds
2017-01-24  2:45   ` Michael S. Tsirkin
2017-01-24  2:45     ` Michael S. Tsirkin
2016-05-24 11:57 Michael S. Tsirkin
2016-05-24 11:57 ` Michael S. Tsirkin
2015-12-21  7:58 Michael S. Tsirkin
2015-12-21  7:58 ` Michael S. Tsirkin
2015-12-07 17:07 Michael S. Tsirkin
2015-09-18 10:42 Michael S. Tsirkin
2015-09-18 10:42 Michael S. Tsirkin
2015-09-09  9:15 Michael S. Tsirkin
2015-09-09  9:15 Michael S. Tsirkin
2015-07-28 10:00 Michael S. Tsirkin
2015-06-01 19:18 Michael S. Tsirkin
2015-06-01 19:45 ` Michael S. Tsirkin
2015-06-01 19:45   ` Michael S. Tsirkin
2015-06-01 19:18 Michael S. Tsirkin
2015-01-08  7:51 Michael S. Tsirkin
2015-01-01 12:26 Michael S. Tsirkin
2015-01-01 12:26 Michael S. Tsirkin
2014-12-18 10:46 Michael S. Tsirkin
2014-12-18 10:46 ` Michael S. Tsirkin
2014-11-13 21:22 Michael S. Tsirkin
2014-11-13 21:22 ` Michael S. Tsirkin
2014-06-25 11:05 Michael S. Tsirkin
2014-06-25 11:05 ` Michael S. Tsirkin
2013-07-15 18:31 Michael S. Tsirkin
2013-07-15 18:31 ` Michael S. Tsirkin
2013-07-22  8:07 ` Michael S. Tsirkin
2013-07-22  8:07   ` Michael S. Tsirkin
2013-07-08 11:45 Michael S. Tsirkin
2013-07-08 11:45 ` Michael S. Tsirkin
2013-05-02 10:53 Michael S. Tsirkin
2013-05-02 10:53 ` Michael S. Tsirkin
2013-05-02 18:55 ` Nicholas A. Bellinger
2013-05-02 19:33   ` Michael S. Tsirkin
2013-05-02 19:49     ` Linus Torvalds
2013-06-05 15:53       ` Michael S. Tsirkin

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=20150715142438-mutt-send-email-mst@redhat.com \
    --to=mst@redhat.com \
    --cc=borntraeger@de.ibm.com \
    --cc=imammedo@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=pmorel@linux.vnet.ibm.com \
    --cc=sfr@canb.auug.org.au \
    --cc=thuth@redhat.com \
    --cc=torvalds@linux-foundation.org \
    --cc=virtualization@lists.linux-foundation.org \
    --cc=yan@daynix.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.