* [PULL] virtio updates
@ 2008-02-04 13:08 Rusty Russell
2008-02-05 12:47 ` Ingo Molnar
0 siblings, 1 reply; 2+ messages in thread
From: Rusty Russell @ 2008-02-04 13:08 UTC (permalink / raw)
To: Linus Torvalds; +Cc: linux-kernel, virtualization
The following changes since commit 9135f1901ee6449dfe338adf6e40e9c2025b8150:
Linus Torvalds (1):
Merge git://git.kernel.org/.../bart/ide-2.6
are available in the git repository at:
ssh://master.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-for-linus master
Anthony Liguori (4):
virtio: Fix vring_init/vring_size to take unsigned long
virtio: Put the virtio under the virtualization menu
virtio: PCI device
virtio: Use PCI revision field to indicate virtio PCI ABI version
Christian Borntraeger (4):
virtnet: remove double ether_setup
virtio_blk: provide getgeo
virtio_blk: Dont waste major numbers
virtio_blk: implement naming for vda-vdz,vdaa-vdzz,vdaaa-vdzzz
Dor Laor (1):
virtio_net: parametrize the napi_weight for virtio receive queue.
Rusty Russell (16):
virtio: Implement skb_partial_csum_set, for setting partial csums on untrusted packets.
virtio: simplify config mechanism.
virtio: explicit enable_cb/disable_cb rather than callback return.
virtio: configuration change callback
virtio: clarify NO_NOTIFY flag usage
virtio: remove unused id field from struct virtio_blk_outhdr
virtio: Net header needs hdr_len
virtio: Tweak virtio_net defines
virtio: populate network rings in the probe routine, not open
virtio: reset function
virtio: handle interrupts after callbacks turned off
virtio: Use the sg_phys convenience function.
virtio: Allow virtio to be modular and used by modules
virtio: flush buffers on open
virtio: free transmit skbs when notified, not on next xmit.
virtio: balloon driver
Documentation/lguest/lguest.c | 231 ++++++++++++++-------
arch/x86/kvm/Kconfig | 1 +
drivers/Kconfig | 2 -
drivers/block/Kconfig | 3 +-
drivers/block/virtio_blk.c | 106 ++++++----
drivers/char/virtio_console.c | 4 +-
drivers/lguest/lguest_device.c | 146 ++++++++-----
drivers/net/Kconfig | 3 +-
drivers/net/virtio_net.c | 155 ++++++++------
drivers/virtio/Kconfig | 31 +++-
drivers/virtio/Makefile | 2 +
drivers/virtio/virtio.c | 65 ++----
drivers/virtio/virtio_balloon.c | 284 +++++++++++++++++++++++++
drivers/virtio/virtio_pci.c | 446 +++++++++++++++++++++++++++++++++++++++
drivers/virtio/virtio_ring.c | 51 +++--
include/linux/lguest_launcher.h | 9 +-
include/linux/skbuff.h | 1 +
include/linux/virtio.h | 19 +-
include/linux/virtio_balloon.h | 18 ++
include/linux/virtio_blk.h | 22 +-
include/linux/virtio_config.h | 104 +++++-----
include/linux/virtio_net.h | 32 ++--
include/linux/virtio_pci.h | 57 +++++
include/linux/virtio_ring.h | 14 +-
net/9p/trans_virtio.c | 8 +-
net/core/skbuff.c | 29 +++
26 files changed, 1422 insertions(+), 421 deletions(-)
create mode 100644 drivers/virtio/virtio_balloon.c
create mode 100644 drivers/virtio/virtio_pci.c
create mode 100644 include/linux/virtio_balloon.h
create mode 100644 include/linux/virtio_pci.h
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PULL] virtio updates
2008-02-04 13:08 [PULL] virtio updates Rusty Russell
@ 2008-02-05 12:47 ` Ingo Molnar
0 siblings, 0 replies; 2+ messages in thread
From: Ingo Molnar @ 2008-02-05 12:47 UTC (permalink / raw)
To: Rusty Russell; +Cc: Linus Torvalds, linux-kernel, virtualization
* Rusty Russell <rusty@rustcorp.com.au> wrote:
> Rusty Russell (16):
> virtio: balloon driver
this change breaks the x86 build, as 'make randconfig' testing found it
after 2 iterations:
drivers/virtio/virtio_balloon.c: In function 'fill_balloon':
drivers/virtio/virtio_balloon.c:98: error: implicit declaration of function 'msleep'
the patch below fixes it.
Ingo
Signed-off-by: Ingo Molnar <mingo@elte.hu>
---
drivers/virtio/virtio_balloon.c | 1 +
1 file changed, 1 insertion(+)
Index: linux/drivers/virtio/virtio_balloon.c
===================================================================
--- linux.orig/drivers/virtio/virtio_balloon.c
+++ linux/drivers/virtio/virtio_balloon.c
@@ -23,6 +23,7 @@
#include <linux/swap.h>
#include <linux/kthread.h>
#include <linux/freezer.h>
+#include <linux/delay.h>
struct virtio_balloon
{
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-02-05 12:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-04 13:08 [PULL] virtio updates Rusty Russell
2008-02-05 12:47 ` Ingo Molnar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox