Statistics
| Branch: | Revision:

root / hw / virtio-bus.h @ 82ca8912

History | View | Annotate | Download (3.4 kB)

# Date Author Comment
83c9f4ca 03/01/2013 04:01 pm Paolo Bonzini

hw: include hw header files with full paths

Done with this script:

cd hw
for i in `find . -name '*.h' | sed 's/^..//'`; do
echo '\,^#.*include.*["<]'$i'[">], s,'$i',hw/&,'
done | sed -i -f - `find . -type f`

This is so that paths remain valid as files are moved....

ff8eca55 01/21/2013 09:23 pm KONRAD Frederic

virtio-bus: introduce virtio-bus

Introduce virtio-bus. Refactored transport device will create a bus which
extends virtio-bus.

Signed-off-by: KONRAD Frederic <>

Reviewed-by: Peter Maydell <>
Signed-off-by: Anthony Liguori <>

8e05db92 01/21/2013 09:23 pm KONRAD Frederic

virtio-device: refactor virtio-device.

Create the virtio-device which is abstract. All the virtio-device can extend
this class. It also add some functions to virtio-bus.

Signed-off-by: KONRAD Frederic <>
Signed-off-by: Anthony Liguori <>