From: Rusty Russell <rusty@rustcorp.com.au>
To: "Linus Torvalds" <torvalds@linux-foundation.org>
Cc: "LKML" <linux-kernel@vger.kernel.org>
Cc: Alex Russell <giles.alex@hotmail.com>
Cc: Amit Shah <amit.shah@redhat.com>
Cc: Bryan Venteicher <bryanv@daemoninthecloset.org>
Cc: Joe Perches <joe@perches.com>
Cc: Lee Jones <lee.jones@linaro.org>
Cc: "Michael S. Tsirkin" <mst@redhat.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Pawel Moll <pawel.moll@arm.com>
Cc: Sasha Levin <levinsasha928@gmail.com>
Cc: "Sjur Brændeland" <sjur.brandeland@stericsson.com>
Cc: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Cc: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Cc: Will Deacon <will.deacon@arm.com>
Subject: [PULL] virtio-next
Date: Tue, 18 Dec 2012 15:46:35 +1030 [thread overview]
Message-ID: <87zk1c0wjw.fsf@rustcorp.com.au> (raw)
git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux.git tags/virtio-next-for-linus
for you to fetch changes up to 1b6370463e88b0c1c317de16d7b962acc1dab4f2:
virtio_console: Add support for remoteproc serial (2012-12-18 15:20:44 +1030)
----------------------------------------------------------------
Some nice cleanups, and even a patch my wife did as a "live" demo for
Latinoware 2012.
There's a slightly non-trivial merge in virtio-net, as we cleaned up the
virtio add_buf interface while DaveM accepted the mq virtio-net patches.
You can see my solution in my pending-rebases branch, if that helps, but I
know you love merging:
https://git.kernel.org/?p=linux/kernel/git/rusty/linux.git;a=commit;h=12e4e64fa66a4c812e4855de32abdb4d819526fe
Cheers,
Rusty.
----------------------------------------------------------------
Alex Russell (1):
lguest: fix typo
Amit Shah (1):
virtio: console: don't rely on virtqueue_add_buf() returning capacity.
Bryan Venteicher (1):
virtio-scsi: Add real 2-clause BSD license to header
Joe Perches (1):
virtio: Convert dev_printk(KERN_<LEVEL> to dev_<level>(
Michael S. Tsirkin (2):
virtio-net: correct capacity math on ring full
virtio-net: remove unused skb_vnet_hdr->num_sg field
Pawel Moll (1):
virtio-mmio: Fix irq parsing in command line parameter
Rusty Russell (9):
lguest: fix block request handling in example launcher.
virtio: move queue_index and num_free fields into core struct virtqueue.
virtio_net: don't rely on virtqueue_add_buf() returning capacity.
virtio: make virtqueue_add_buf() returning 0 on success, not capacity.
virtio: console: make it clear that virtqueue_add_buf() no longer returns > 0
virtio: net: make it clear that virtqueue_add_buf() no longer returns > 0
virtio: rpmsg: make it clear that virtqueue_add_buf() no longer returns > 0
virtio: scsi: make it clear that virtqueue_add_buf() no longer returns > 0
virtio: tools: make it clear that virtqueue_add_buf() no longer returns > 0
Sjur Brændeland (4):
virtio_console: Free buffer if splice fails
virtio_console: Use kmalloc instead of kzalloc
virtio_console: Merge struct buffer_token into struct port_buffer
virtio_console: Add support for remoteproc serial
Wanlong Gao (2):
virtio: use dev_to_virtio wrapper in virtio
virtio: add drv_to_virtio to make code clearly
Wei Yongjun (1):
virtio-pci: use module_pci_driver to simplify the code
Will Deacon (3):
mm: highmem: export kmap_to_page for modules
virtio: 9p: correctly pass physical address to userspace for high pages
virtio: force vring descriptors to be allocated from lowmem
sjur.brandeland@stericsson.com (1):
virtio_console: Free buffers from out-queue upon close
drivers/char/virtio_console.c | 329 ++++++++++++++++++++++++++------------
drivers/lguest/core.c | 2 +-
drivers/net/virtio_net.c | 46 +++---
drivers/rpmsg/virtio_rpmsg_bus.c | 6 +-
drivers/scsi/virtio_scsi.c | 24 +--
drivers/virtio/virtio.c | 30 ++--
drivers/virtio/virtio_balloon.c | 7 +-
drivers/virtio/virtio_mmio.c | 30 ++--
drivers/virtio/virtio_pci.c | 20 +--
drivers/virtio/virtio_ring.c | 46 +++---
include/linux/virtio.h | 25 ++-
include/linux/virtio_scsi.h | 28 +++-
include/uapi/linux/virtio_ids.h | 1 +
mm/highmem.c | 1 +
net/9p/trans_virtio.c | 3 +-
tools/lguest/lguest.c | 84 ++++------
tools/virtio/virtio_test.c | 4 +-
17 files changed, 412 insertions(+), 274 deletions(-)
next reply other threads:[~2012-12-18 5:34 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-18 5:16 Rusty Russell [this message]
2012-12-20 3:56 ` [PULL] virtio-next Rusty Russell
-- strict thread matches above, loose matches on Subject: below --
2013-07-01 0:55 Rusty Russell
2013-07-10 3:39 Rusty Russell
2013-11-07 11:27 Rusty Russell
2014-04-01 2:58 Rusty Russell
2014-06-12 2:42 Rusty Russell
2014-08-11 2:28 Rusty Russell
2014-08-11 2:28 ` Rusty Russell
2015-02-18 5:15 Rusty Russell
2015-02-18 5:15 ` Rusty Russell
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=87zk1c0wjw.fsf@rustcorp.com.au \
--to=rusty@rustcorp.com.au \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@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.