mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 23:28:37 -04:00
bhyve: add .pe_snapshot method for PCI 'hostbridge'
There is no error when dump doesn't have it, but to be more consistent this PCI devices should be saved as well. Reviewed by: corvink, rew MFC after: 1 week Sponsored by: vStack Differential Revision: https://reviews.freebsd.org/D40108
This commit is contained in:
parent
14c80457b0
commit
6f7d2cf8bb
1 changed files with 11 additions and 0 deletions
|
|
@ -86,6 +86,14 @@ pci_amd_hostbridge_legacy_config(nvlist_t *nvl, const char *opts __unused)
|
|||
return (0);
|
||||
}
|
||||
|
||||
#ifdef BHYVE_SNAPSHOT
|
||||
static int
|
||||
pci_de_snapshot(struct vm_snapshot_meta *meta __unused)
|
||||
{
|
||||
return (0);
|
||||
}
|
||||
#endif
|
||||
|
||||
static const struct pci_devemu pci_de_amd_hostbridge = {
|
||||
.pe_emu = "amd_hostbridge",
|
||||
.pe_legacy_config = pci_amd_hostbridge_legacy_config,
|
||||
|
|
@ -96,5 +104,8 @@ PCI_EMUL_SET(pci_de_amd_hostbridge);
|
|||
static const struct pci_devemu pci_de_hostbridge = {
|
||||
.pe_emu = "hostbridge",
|
||||
.pe_init = pci_hostbridge_init,
|
||||
#ifdef BHYVE_SNAPSHOT
|
||||
.pe_snapshot = pci_de_snapshot,
|
||||
#endif
|
||||
};
|
||||
PCI_EMUL_SET(pci_de_hostbridge);
|
||||
|
|
|
|||
Loading…
Reference in a new issue