History log of /pciutils/lib/dump.c (Results 1 – 22 of 22)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: v3.14.0, v3.13.0
# b59b41bf 22-May-2024 Konrad Sztyber <[email protected]>

dump: allow 6-digit domains

The SPDK VMD driver assigns domains for the devices behind a VMD by
concatenating bus/device/function of the VMD, each on a separate byte.
For instance, a device behind a

dump: allow 6-digit domains

The SPDK VMD driver assigns domains for the devices behind a VMD by
concatenating bus/device/function of the VMD, each on a separate byte.
For instance, a device behind a VMD with an address of 5d:05.5 would be
assigned domain 5d0505.

Signed-off-by: Konrad Sztyber <[email protected]>

show more ...


Revision tags: v3.12.0
# 1660c737 29-Mar-2024 Martin Mares <[email protected]>

Use C99 named initializers for struct pci_methods


Revision tags: v3.11.1, v3.11.0
# a997ef13 29-Dec-2023 Martin Mares <[email protected]>

Rename aux fields in structs pci_access and pci_dev to backend_data

This hopefully conveys the purpose much better than just "aux".


# 61829219 18-Jun-2023 Martin Mares <[email protected]>

Update license comments and added SPDX license identifiers

Previously, the only information about the specific version of GPL
was present in the README and individual source files mentioned only
GPL

Update license comments and added SPDX license identifiers

Previously, the only information about the specific version of GPL
was present in the README and individual source files mentioned only
GPL alone.

Let us update all copyright comments to explicitly say "GPL v2+"
and also include the machine readable SPDX license identifier.

show more ...


Revision tags: v3.10.0, v3.9.0, v3.8.0
# 006ca87f 20-Dec-2021 Pali Rohár <[email protected]>

dump: Allow more leading zeros in dump line number

U-Boot's "pci display.b" command prints pci config space dump with 8 digits
in line number. So allow up to the 8 digits in line number to easily pa

dump: Allow more leading zeros in dump line number

U-Boot's "pci display.b" command prints pci config space dump with 8 digits
in line number. So allow up to the 8 digits in line number to easily parse
U-Boot's pci config space dumps.

show more ...


# ac459e26 30-Oct-2020 Rohit Mundra <[email protected]>

Added five nibbles for domain in dump read

Allow five nibbles as valid domain, when reading from a dump file with
domain


Revision tags: v3.7.0, v3.6.4, v3.6.3, v3.6.2, v3.6.1, v3.6.0, v3.5.6, v3.5.5, v3.5.4, v3.5.3, v3.5.2, v3.5.1, v3.5.0, v3.4.1, v3.4.0, v3.3.1, v3.3.0, v3.2.1, v3.2.0, v3.1.10, v3.1.9
# 364275f8 11-Nov-2011 Ville Skyttä <[email protected]>

Fix check whether dump.name was given


Revision tags: v3.1.8, v3.1.7, v3.1.6, v3.1.5, v3.1.4
# 202a8f8a 10-Aug-2009 Martin Mares <[email protected]>

Fixed FILE leak in the dump back-end

Closes https://bugzilla.novell.com/show_bug.cgi?id=529469


Revision tags: v3.1.3, v3.1.2, v3.1.1, v3.1.0, v3.1-alpha3, v3.1-alpha2
# 52c81519 18-Nov-2008 Ben Hutchings <[email protected]>

Add pci_read_vpd() function and internal read_vpd() method

Signed-off-by: Ben Hutchings <[email protected]>


Revision tags: v3.1-alpha1, v3.0.3, v3.0.2, v3.0.1, v3.0.0
# 9ff67879 12-Feb-2008 Martin Mares <[email protected]>

Introduced API for selection of access methods.

Access method names were normalized (they so far served only informational
purposes). Each access method gained a help text.


# cb6ee324 12-Feb-2008 Martin Mares <[email protected]>

Replaced the method_params array by library parameters.

This change is backward incompatible, but hopefully nobody used this
ill-thought interface.


# dc01dd60 29-Nov-2007 Martin Mares <[email protected]>

Squashed compiler warnings about code with no effect
(there really were surplus *'s).


# d19394db 17-Sep-2006 Martin Mares <[email protected]>

Fixed a couple of bugs in the dump backend.


# f7821e53 23-Aug-2005 Martin Mares <[email protected]>

Improved reading of dumps

git-archimport-id: [email protected]/pciutils--main--2.2--patch-75


# ea4e5f5d 23-Aug-2005 Martin Mares <[email protected]>

Fixed reading of dumps

git-archimport-id: [email protected]/pciutils--main--2.2--patch-73


# 09817437 27-Jun-2004 Martin Mares <[email protected]>

Added support for 4096-byte extended configuration space.

git-archimport-id: [email protected]/pciutils--main--2.2--patch-50


# 1f7c91cc 27-Dec-2003 Martin Mares <[email protected]>

Support for PCI domains finished

git-archimport-id: [email protected]/pciutils--main--2.2--patch-35


# 84c8d1bb 27-Dec-2003 Martin Mares <[email protected]>

Preliminary support for PCI domains

git-archimport-id: [email protected]/pciutils--main--2.2--patch-34


# a832f6f1 26-Dec-2003 Martin Mares <[email protected]>

Fixed UNUSED

Replaced obsolete syntax of __attribute__((unused)) in the middle of
parameter declarations (which is no longer supported by GCC 3.1) by the
current syntax (attribute at the end). Thank

Fixed UNUSED

Replaced obsolete syntax of __attribute__((unused)) in the middle of
parameter declarations (which is no longer supported by GCC 3.1) by the
current syntax (attribute at the end). Thanks to [email protected]
for reporting this problem.
git-archimport-id: [email protected]/pciutils--main--2.2--patch-4

show more ...


# a85769a8 26-Dec-2003 Martin Mares <[email protected]>

Removed $Id$

Removed CVS $Id$ tags from all files.
git-archimport-id: [email protected]/pciutils--main--2.2--patch-3


# a27a33dd 30-Mar-2002 Martin Mares <[email protected]>

Changed all my email addresses to [email protected].


# 727ce158 22-Jan-1999 Martin Mares <[email protected]>

Rewrote the PCI Utilities. All PCI configuration space access has been
moved to a library which supports multiple access mechanisms: the current
/proc/bus/pci one, direct port access (needed for debu

Rewrote the PCI Utilities. All PCI configuration space access has been
moved to a library which supports multiple access mechanisms: the current
/proc/bus/pci one, direct port access (needed for debugging of kernel
PCI code and as a nice side-effect this makes pciutils work with 2.0
kernels, although only for root) and reading of configuration dumps.

This has been released as version 1.99.2-alpha. For detailed description
of changes, see the ChangeLog.

Can anybody test it on non-PC architectures, please? (Especially if you
have any 64-bit card.)

show more ...