diff options
author | John Levon <john.levon@nutanix.com> | 2021-01-20 10:44:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-20 10:44:49 +0000 |
commit | 53cc29bc8ca5083b9b6075f151824d65557af6f0 (patch) | |
tree | e7ae6ef44eb87c81f74f1740d0da69614606d247 /include/libvfio-user.h | |
parent | fa5104150bca4182f8a38d39fa50f7e61982568e (diff) | |
download | libvfio-user-53cc29bc8ca5083b9b6075f151824d65557af6f0.zip libvfio-user-53cc29bc8ca5083b9b6075f151824d65557af6f0.tar.gz libvfio-user-53cc29bc8ca5083b9b6075f151824d65557af6f0.tar.bz2 |
support extended capabilities (#226)
Provide initial support for extended capabilities, and implement handlers for
the Device Serial Number and Vendor-Specific capabilities.
Signed-off-by: John Levon <john.levon@nutanix.com>
Reviewed-by: Swapnil Ingle <swapnil.ingle@nutanix.com>
Diffstat (limited to 'include/libvfio-user.h')
-rw-r--r-- | include/libvfio-user.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/libvfio-user.h b/include/libvfio-user.h index 0b5ac02..d7d54a7 100644 --- a/include/libvfio-user.h +++ b/include/libvfio-user.h @@ -43,11 +43,12 @@ #include <unistd.h> #include <syslog.h> -#include "pci_defs.h" -#include "pci_caps/pm.h" -#include "pci_caps/px.h" +#include "pci_caps/dsn.h" #include "pci_caps/msi.h" #include "pci_caps/msix.h" +#include "pci_caps/pm.h" +#include "pci_caps/px.h" +#include "pci_defs.h" #include "vfio-user.h" #ifdef __cplusplus |