virtualization.lists.linux-foundation.org archive mirror
 help / color / mirror / Atom feed
* [PULL] virtio updates
@ 2008-02-04 13:08 Rusty Russell
  0 siblings, 0 replies; 7+ 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] 7+ messages in thread

* Re: [PULL] virtio updates
       [not found] <200802050008.13834.rusty@rustcorp.com.au>
@ 2008-02-05 12:47 ` Ingo Molnar
  2008-02-05 13:35 ` Soren Hansen
  1 sibling, 0 replies; 7+ 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] 7+ messages in thread

* Re: [PULL] virtio updates
       [not found] <200802050008.13834.rusty@rustcorp.com.au>
  2008-02-05 12:47 ` [PULL] virtio updates Ingo Molnar
@ 2008-02-05 13:35 ` Soren Hansen
  2008-02-05 19:17   ` Anthony Liguori
  2008-02-06  4:37   ` Rusty Russell
  1 sibling, 2 replies; 7+ messages in thread
From: Soren Hansen @ 2008-02-05 13:35 UTC (permalink / raw)
  To: virtualization


[-- Attachment #1.1: Type: text/plain, Size: 402 bytes --]

On Tue, Feb 05, 2008 at 12:08:13AM +1100, Rusty Russell wrote:
>   ssh://master.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-for-linus
>   master

If I don't have an account on master.kernel.org, how can I access this
git tree? None of the ones on the kernel.org gitweb seems to match that
path.

-- 
Soren Hansen
Virtualisation specialist
Ubuntu Server Team
http://www.ubuntu.com/

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

[-- Attachment #2: Type: text/plain, Size: 184 bytes --]

_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/virtualization

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PULL] virtio updates
  2008-02-05 13:35 ` Soren Hansen
@ 2008-02-05 19:17   ` Anthony Liguori
  2008-02-05 19:28     ` Soren Hansen
  2008-02-06  4:37   ` Rusty Russell
  1 sibling, 1 reply; 7+ messages in thread
From: Anthony Liguori @ 2008-02-05 19:17 UTC (permalink / raw)
  To: virtualization

Soren Hansen wrote:
> On Tue, Feb 05, 2008 at 12:08:13AM +1100, Rusty Russell wrote:
>>   ssh://master.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-for-linus
>>   master
> 
> If I don't have an account on master.kernel.org, how can I access this
> git tree? None of the ones on the kernel.org gitweb seems to match that
> path.

git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-for-linus

> 
> 
> ------------------------------------------------------------------------
> 
> _______________________________________________
> Virtualization mailing list
> Virtualization@lists.linux-foundation.org
> https://lists.linux-foundation.org/mailman/listinfo/virtualization

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PULL] virtio updates
  2008-02-05 19:17   ` Anthony Liguori
@ 2008-02-05 19:28     ` Soren Hansen
  2008-02-06  4:47       ` H. Peter Anvin
  0 siblings, 1 reply; 7+ messages in thread
From: Soren Hansen @ 2008-02-05 19:28 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: virtualization


[-- Attachment #1.1: Type: text/plain, Size: 729 bytes --]

On Tue, Feb 05, 2008 at 01:17:38PM -0600, Anthony Liguori wrote:
> Soren Hansen wrote:
>> On Tue, Feb 05, 2008 at 12:08:13AM +1100, Rusty Russell wrote:
>>>   ssh://master.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-for-linus
>>>   master
>> If I don't have an account on master.kernel.org, how can I access
>> this git tree? None of the ones on the kernel.org gitweb seems to
>> match that path.
>
> git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-for-linus

Ah, thanks very much. I didn't see it on the git.kernel.org index page,
so I assumed it would be based elsewhere. Oh, well, live and learn :)

-- 
Soren Hansen
Virtualisation specialist
Ubuntu Server Team
http://www.ubuntu.com/

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

[-- Attachment #2: Type: text/plain, Size: 184 bytes --]

_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/virtualization

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PULL] virtio updates
  2008-02-05 13:35 ` Soren Hansen
  2008-02-05 19:17   ` Anthony Liguori
@ 2008-02-06  4:37   ` Rusty Russell
  1 sibling, 0 replies; 7+ messages in thread
From: Rusty Russell @ 2008-02-06  4:37 UTC (permalink / raw)
  To: virtualization

On Wednesday 06 February 2008 00:35:50 Soren Hansen wrote:
> On Tue, Feb 05, 2008 at 12:08:13AM +1100, Rusty Russell wrote:
> >  
> > ssh://master.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-for-linu
> >s master
>
> If I don't have an account on master.kernel.org, how can I access this
> git tree? None of the ones on the kernel.org gitweb seems to match that
> path.

Hmm, I actually have no idea why it's not accessible via gitweb.

But my patch queue is kept at http://ozlabs.org/~rusty/kernel and this is 
merely a convenient way to get my patches to Linus.

Cheers,
Rusty.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PULL] virtio updates
  2008-02-05 19:28     ` Soren Hansen
@ 2008-02-06  4:47       ` H. Peter Anvin
  0 siblings, 0 replies; 7+ messages in thread
From: H. Peter Anvin @ 2008-02-06  4:47 UTC (permalink / raw)
  To: Rusty Russell, virtualization

Soren Hansen wrote:
> On Tue, Feb 05, 2008 at 01:17:38PM -0600, Anthony Liguori wrote:
>> Soren Hansen wrote:
>>> On Tue, Feb 05, 2008 at 12:08:13AM +1100, Rusty Russell wrote:
>>>>   ssh://master.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-for-linus
>>>>   master
>>> If I don't have an account on master.kernel.org, how can I access
>>> this git tree? None of the ones on the kernel.org gitweb seems to
>>> match that path.
>> git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-for-linus
> 
> Ah, thanks very much. I didn't see it on the git.kernel.org index page,
> so I assumed it would be based elsewhere. Oh, well, live and learn :)
> 

gitweb doesn't see it because you don't have a .git extension on the 
directory.

	-hpa

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2008-02-06  4:47 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <200802050008.13834.rusty@rustcorp.com.au>
2008-02-05 12:47 ` [PULL] virtio updates Ingo Molnar
2008-02-05 13:35 ` Soren Hansen
2008-02-05 19:17   ` Anthony Liguori
2008-02-05 19:28     ` Soren Hansen
2008-02-06  4:47       ` H. Peter Anvin
2008-02-06  4:37   ` Rusty Russell
2008-02-04 13:08 Rusty Russell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).