Re: [kvm-devel] [RFC][PATCH 4/5] [KVM VIRTIO] A pci shared code for pv devices

2007-08-28 Thread Arnd Bergmann
On Saturday 25 August 2007, Dor Laor wrote: +static int debug = 3; +module_param(debug, int, 0); +MODULE_PARM_DESC(debug, Debug level (0=none,...,16=all)); + +#define DPRINTK(klevel, fmt, args...) \ + if (('0' + debug) = (int)(klevel[1])) \ + printk(klevel %s:%d: fmt, \ +

[kvm-devel] [RFC][PATCH 4/5] [KVM VIRTIO] A pci shared code for pv devices

2007-08-24 Thread Dor Laor
PV devices are currently discovered by pci bus. It is standard bus for x86 and good for HVM guests. Further flexibility will be achieved by a virtual bus, although some HVM guest will still require pci. Signed-off-by: Dor Laor [EMAIL PROTECTED] --- drivers/kvm/Makefile |2 +-