13 Feb, 2015

11 commits


11 Feb, 2015

21 commits


15 Jul, 2013

1 commit


04 Jul, 2013

1 commit

  • Somehow a naked u16 slipped into the glibc headers on my Ubuntu machine
    (i386 2.17-0ubuntu5), breaking compile:

    In file included from lguest.c:46:0:
    /usr/include/linux/virtio_net.h:188:2: error: unknown type name ‘u16’

    We use the kernel-style types anyway, just define them before the includes.
    Also remove the advice on adding missing headers: that no longer works.

    Signed-off-by: Rusty Russell

    Rusty Russell
     

02 Jul, 2013

2 commits


07 Mar, 2013

1 commit


12 Jan, 2013

1 commit

  • The CONFIG_EXPERIMENTAL config item has not carried much meaning for a
    while now and is almost always enabled by default. As agreed during the
    Linux kernel summit, remove it from any "depends on" lines in Kconfigs.

    CC: Rusty Russell
    CC: Davidlohr Bueso
    Signed-off-by: Kees Cook
    Acked-by: Rusty Russell

    Kees Cook
     

22 Oct, 2012

1 commit

  • virtio requests are scatter-gather-style descriptors, but no
    assumptions should be made about the layout. lguest was lazy here,
    but saved by the fact that the network device hands all requests to
    tun (which does it correctly) and console and random devices simply
    use readv and writev.

    Block devices, however, are broken: we convert to iovecs internally,
    just make sure we handle the correctly.

    Signed-off-by: Rusty Russell

    Rusty Russell
     

04 Oct, 2012

1 commit