search for: pciutil

Displaying 20 results from an estimated 139 matches for "pciutil".

Did you mean: pciutils
2014 Aug 05
0
CEBA-2014:1006 CentOS 6 pciutils FASTTRACK Update
...Errata and Bugfix Advisory 2014:1006 Upstream details at : https://rhn.redhat.com/errata/RHBA-2014-1006.html The following updated files have been uploaded and are currently syncing to the mirrors: ( sha256sum Filename ) i386: e0d1eec27dcdd4f176cdec2d1c3bb04b66bd03bb3c99ed05a409a19fa4d5dd34 pciutils-3.1.10-4.el6.i686.rpm e289369aed3aa5f7c5bcb4c6f2506368f70ba95e72d848923e436545529f9ff3 pciutils-devel-3.1.10-4.el6.i686.rpm e383c7a70e4cc800b7f039517a2ad67bf41710ed613d8532206d456145749fcb pciutils-devel-static-3.1.10-4.el6.i686.rpm 25afc9d5ea27afce205842d91e2044a6651ed2e4e2ab57c29c3d779b56a66e2...
2017 Mar 17
1
[PATCH] p2v: un-duplicate common dependencies
...ncies.m4 b/p2v/dependencies.m4 index 21541b4..e590f57 100644 --- a/p2v/dependencies.m4 +++ b/p2v/dependencies.m4 @@ -29,27 +29,12 @@ ifelse(REDHAT,1, dnl Run as external programs by the p2v binary. /usr/bin/ssh /usr/bin/qemu-nbd - gawk - curl - ethtool - util-linux which - xterm - pciutils - lsscsi - usbutils dnl Generally useful tools to use within xterm - less vim-minimal - dnl The hwdata package contains PCI IDs, used by virt-p2v to display - dnl network vendor information (RHBZ#855059). - hwdata - dnl Useful disk and diagnostic utilities. - hdparm - smartmon...
2015 Jan 21
1
[pciutils patch] add virtio vendor capability support
...ication can be found here: > > http://docs.oasis-open.org/virtio/virtio/v1.0/cs01/virtio-v1.0-cs01.html#x1-690004 > > This patch adds support for decoding these capabilities to lspci. I like the patch, except for a couple of details: (1) Please follow the coding style of the rest of pciutils. (2) You assume that PCI_CAP_ID_VNDR of all Redhat devices contains virtio, but the comment nearby refers to a range of device IDs only. (3) Moving code related to vendor-defined caps to a separate file sounds good, but I think we should push the boundary a bit further: let the main...
2015 Jan 21
1
[pciutils patch] add virtio vendor capability support
...ication can be found here: > > http://docs.oasis-open.org/virtio/virtio/v1.0/cs01/virtio-v1.0-cs01.html#x1-690004 > > This patch adds support for decoding these capabilities to lspci. I like the patch, except for a couple of details: (1) Please follow the coding style of the rest of pciutils. (2) You assume that PCI_CAP_ID_VNDR of all Redhat devices contains virtio, but the comment nearby refers to a range of device IDs only. (3) Moving code related to vendor-defined caps to a separate file sounds good, but I think we should push the boundary a bit further: let the main...
2014 Aug 06
0
CentOS-announce Digest, Vol 114, Issue 3
...edit your Subject line so it is more specific than "Re: Contents of CentOS-announce digest..." Today's Topics: 1. CESA-2014:1004 Important CentOS 5 yum-updatesd Update (Johnny Hughes) 2. CEBA-2014:1005 CentOS 6 numad Update (Johnny Hughes) 3. CEBA-2014:1006 CentOS 6 pciutils FASTTRACK Update (Johnny Hughes) 4. CESA-2014:1009 Important CentOS 6 samba4 Update (Johnny Hughes) 5. CESA-2014:1008 Important CentOS 6 samba Security Update (Johnny Hughes) 6. CESA-2014:1008 Important CentOS 7 samba Security Update (Johnny Hughes) -------------------------...
2015 Jan 21
0
[pciutils patch] add virtio vendor capability support
...t; > http://docs.oasis-open.org/virtio/virtio/v1.0/cs01/virtio-v1.0-cs01.html#x1-690004 > > > > This patch adds support for decoding these capabilities to lspci. > > I like the patch, except for a couple of details: > > (1) Please follow the coding style of the rest of pciutils. I've tried. What specifically doesn't match? > (2) You assume that PCI_CAP_ID_VNDR of all Redhat devices contains virtio, > but the comment nearby refers to a range of device IDs only. I'll add a check. Doesn't matter today, there are no other redhat devices with ve...
2015 Jan 21
0
[pciutils patch] add virtio vendor capability support
...t; > http://docs.oasis-open.org/virtio/virtio/v1.0/cs01/virtio-v1.0-cs01.html#x1-690004 > > > > This patch adds support for decoding these capabilities to lspci. > > I like the patch, except for a couple of details: > > (1) Please follow the coding style of the rest of pciutils. I've tried. What specifically doesn't match? > (2) You assume that PCI_CAP_ID_VNDR of all Redhat devices contains virtio, > but the comment nearby refers to a range of device IDs only. I'll add a check. Doesn't matter today, there are no other redhat devices with ve...
2015 Jan 21
2
[pciutils patch] add virtio vendor capability support
...p;& ./configure -lspci: lspci.o ls-vpd.o ls-caps.o ls-ecaps.o ls-kernel.o ls-tree.o ls-map.o common.o lib/$(PCILIB) +lspci: lspci.o ls-vpd.o ls-caps.o ls-caps-vendor.o ls-ecaps.o ls-kernel.o ls-tree.o ls-map.o common.o lib/$(PCILIB) setpci: setpci.o common.o lib/$(PCILIB) LSPCIINC=lspci.h pciutils.h $(PCIINC) diff --git a/ls-caps-vendor.c b/ls-caps-vendor.c new file mode 100644 index 0000000..edcc44a --- /dev/null +++ b/ls-caps-vendor.c @@ -0,0 +1,59 @@ +/* + * The PCI Utilities -- Show Vendor-specific Capabilities + * + * Copyright (c) 2014 Gerd Hoffmann <kraxel at redhat.com> + * +...
2015 Jan 21
2
[pciutils patch] add virtio vendor capability support
...p;& ./configure -lspci: lspci.o ls-vpd.o ls-caps.o ls-ecaps.o ls-kernel.o ls-tree.o ls-map.o common.o lib/$(PCILIB) +lspci: lspci.o ls-vpd.o ls-caps.o ls-caps-vendor.o ls-ecaps.o ls-kernel.o ls-tree.o ls-map.o common.o lib/$(PCILIB) setpci: setpci.o common.o lib/$(PCILIB) LSPCIINC=lspci.h pciutils.h $(PCIINC) diff --git a/ls-caps-vendor.c b/ls-caps-vendor.c new file mode 100644 index 0000000..edcc44a --- /dev/null +++ b/ls-caps-vendor.c @@ -0,0 +1,59 @@ +/* + * The PCI Utilities -- Show Vendor-specific Capabilities + * + * Copyright (c) 2014 Gerd Hoffmann <kraxel at redhat.com> + * +...
2015 Jan 22
1
[pciutils patch v2] add virtio vendor capability support
> Attached is a dump of a virtio-net device (both verbose=2 and hex). Thanks! I have cleaned up the code a little, could you please check that it still works for you? Martin
2015 Jan 23
0
[pciutils patch v2] add virtio vendor capability support
On Do, 2015-01-22 at 22:46 +0100, Martin Mares wrote: > > Attached is a dump of a virtio-net device (both verbose=2 and hex). > > Thanks! > > I have cleaned up the code a little, could you please check that > it still works for you? Works fine. cheers, Gerd
2015 Jan 22
1
[pciutils patch v2] add virtio vendor capability support
Hi! > virtio uses vendor-specific capabilities to specify the location of > the virtio register ranges. The specification can be found here: > > http://docs.oasis-open.org/virtio/virtio/v1.0/cs01/virtio-v1.0-cs01.html#x1-690004 > > This patch adds support for decoding these capabilities to lspci. Thanks, applied. One more request: could you please provide a hexdump (lspci
2015 Jan 22
1
[pciutils patch v2] add virtio vendor capability support
Hi! > virtio uses vendor-specific capabilities to specify the location of > the virtio register ranges. The specification can be found here: > > http://docs.oasis-open.org/virtio/virtio/v1.0/cs01/virtio-v1.0-cs01.html#x1-690004 > > This patch adds support for decoding these capabilities to lspci. Thanks, applied. One more request: could you please provide a hexdump (lspci
2015 Jan 22
0
[pciutils patch v2] add virtio vendor capability support
On Do, 2015-01-22 at 10:10 +0100, Martin Mares wrote: > lspci -vxxx Attached is a dump of a virtio-net device (both verbose=2 and hex). cheers, Gerd -------------- next part -------------- 00:09.0 Ethernet controller: Red Hat, Inc Virtio network device Subsystem: Red Hat, Inc Virtio network device Physical Slot: 9 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr-
2015 Jan 22
0
[pciutils patch v2] add virtio vendor capability support
On Do, 2015-01-22 at 10:10 +0100, Martin Mares wrote: > lspci -vxxx Attached is a dump of a virtio-net device (both verbose=2 and hex). cheers, Gerd -------------- next part -------------- 00:09.0 Ethernet controller: Red Hat, Inc Virtio network device Subsystem: Red Hat, Inc Virtio network device Physical Slot: 9 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr-
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 Capabiliti...
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 Capabiliti...
2013 Feb 17
6
Install issues for Xen 4.2.1 on Ubuntu 12.10
...so apt-get update apt-get -y upgrade apt-get -y dist-upgrade reboot (uname -r returns back 3.5.0-23-generic) apt-get install -y build-essential python-dev gettext bin86 bcc iasl uuid-dev libncurses5-dev pkg-config libglib2.0-dev libyajl-dev git gcc-multilib texinfo fakeroot libglib2.0-dev texinfo pciutils pciutils-dev qemu-common gpg --recv-key 57E82BD9 wget http://bits.xensource.com/oss-xen/release/4.2.1/xen-4.2.1.tar.gz.sig wget http://bits.xensource.com/oss-xen/release/4.2.1/xen-4.2.1.tar.gz gpg --verify xen-4.2.1.tar.gz.sig xen-4.2.1.tar.gz tar -vzxf xen-4.2.1.tar.gz cd xen-4.2.1 ./configure ma...
2015 Jan 21
2
[pciutils patch v2] add virtio vendor capability support
...p;& ./configure -lspci: lspci.o ls-vpd.o ls-caps.o ls-ecaps.o ls-kernel.o ls-tree.o ls-map.o common.o lib/$(PCILIB) +lspci: lspci.o ls-vpd.o ls-caps.o ls-caps-vendor.o ls-ecaps.o ls-kernel.o ls-tree.o ls-map.o common.o lib/$(PCILIB) setpci: setpci.o common.o lib/$(PCILIB) LSPCIINC=lspci.h pciutils.h $(PCIINC) diff --git a/ls-caps-vendor.c b/ls-caps-vendor.c new file mode 100644 index 0000000..4cdfe22 --- /dev/null +++ b/ls-caps-vendor.c @@ -0,0 +1,76 @@ +/* + * The PCI Utilities -- Show Vendor-specific Capabilities + * + * Copyright (c) 2014 Gerd Hoffmann <kraxel at redhat.com> + * +...
2015 Jan 21
2
[pciutils patch v2] add virtio vendor capability support
...p;& ./configure -lspci: lspci.o ls-vpd.o ls-caps.o ls-ecaps.o ls-kernel.o ls-tree.o ls-map.o common.o lib/$(PCILIB) +lspci: lspci.o ls-vpd.o ls-caps.o ls-caps-vendor.o ls-ecaps.o ls-kernel.o ls-tree.o ls-map.o common.o lib/$(PCILIB) setpci: setpci.o common.o lib/$(PCILIB) LSPCIINC=lspci.h pciutils.h $(PCIINC) diff --git a/ls-caps-vendor.c b/ls-caps-vendor.c new file mode 100644 index 0000000..4cdfe22 --- /dev/null +++ b/ls-caps-vendor.c @@ -0,0 +1,76 @@ +/* + * The PCI Utilities -- Show Vendor-specific Capabilities + * + * Copyright (c) 2014 Gerd Hoffmann <kraxel at redhat.com> + * +...