22 Oct, 2009

1 commit

  • Rusty,

    commit 3ca4f5ca73057a617f9444a91022d7127041970a
    virtio: add virtio IDs file
    moved all device IDs into a single file. While the change itself is
    a very good one, it can break userspace applications. For example
    if a userspace tool wanted to get the ID of virtio_net it used to
    include virtio_net.h. This does no longer work, since virtio_net.h
    does not include virtio_ids.h.
    This patch moves all "#include " from the C
    files into the header files, making the header files compatible with
    the old ones.

    In addition, this patch exports virtio_ids.h to userspace.

    CC: Fernando Luis Vazquez Cao
    Signed-off-by: Christian Borntraeger
    Signed-off-by: Rusty Russell

    Christian Borntraeger
     

23 Sep, 2009

1 commit


25 Jul, 2008

1 commit


30 May, 2008

1 commit

  • Note that by itself, having a "hardware" random generator does very
    little: you should probably run "rngd" in your guest to feed this into
    the kernel entropy pool.

    Included:
    virtio_rng: dont use vmalloced addresses for virtio

    If virtio_rng is build as a module, random_data is an address
    in vmalloc space. As virtio expects guest real addresses, this
    can cause any kind of funny behaviour, so lets allocate
    random_data dynamically with kmalloc.

    Signed-off-by: Christian Borntraeger

    Signed-off-by: Rusty Russell

    Rusty Russell