search for: 5ca9899

Displaying 4 results from an estimated 4 matches for "5ca9899".

2015 Jan 21
2
[pciutils patch] add virtio vendor capability support
.../ + show_vendor_caps_virtio(d, where, cap); + break; + default: + printf("Vendor Specific Information: Len=%02x <?>\n", BITS(cap, 0, 8)); + break; + } break; case PCI_CAP_ID_DBG: cap_debug_port(cap); diff --git a/lspci.h b/lspci.h index 86429b2..5ca9899 100644 --- a/lspci.h +++ b/lspci.h @@ -70,6 +70,10 @@ void show_caps(struct device *d, int where); void show_ext_caps(struct device *d); +/* ls-caps-vendor.c */ + +void show_vendor_caps_virtio(struct device *d, int where, int cap); + /* ls-kernel.c */ void show_kernel_machine(struct device...
2015 Jan 21
2
[pciutils patch] add virtio vendor capability support
.../ + show_vendor_caps_virtio(d, where, cap); + break; + default: + printf("Vendor Specific Information: Len=%02x <?>\n", BITS(cap, 0, 8)); + break; + } break; case PCI_CAP_ID_DBG: cap_debug_port(cap); diff --git a/lspci.h b/lspci.h index 86429b2..5ca9899 100644 --- a/lspci.h +++ b/lspci.h @@ -70,6 +70,10 @@ void show_caps(struct device *d, int where); void show_ext_caps(struct device *d); +/* ls-caps-vendor.c */ + +void show_vendor_caps_virtio(struct device *d, int where, int cap); + /* ls-kernel.c */ void show_kernel_machine(struct device...
2015 Jan 19
3
[PATCH v3 00/16] virtio-pci: towards virtio 1.0 guest support
Hi, > BTW: is there a tool (or pciutils patch) which can decode the virtio > capabilities? Searched for a patch today, and all google found me was this mail asking for one :-o So I went ahead and coded one up. Attached. While hacking it up I've noticed spec doesn't match reality. The "Virtio Structure PCI Capabilities" section here ...
2015 Jan 19
3
[PATCH v3 00/16] virtio-pci: towards virtio 1.0 guest support
Hi, > BTW: is there a tool (or pciutils patch) which can decode the virtio > capabilities? Searched for a patch today, and all google found me was this mail asking for one :-o So I went ahead and coded one up. Attached. While hacking it up I've noticed spec doesn't match reality. The "Virtio Structure PCI Capabilities" section here ...