diff options
author | Joan Lledó <jlledom@member.fsf.org> | 2019-11-03 21:36:48 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2019-11-03 21:38:18 +0100 |
commit | ec057117c42c18772b207851b4b13d8d383685e3 (patch) | |
tree | 87691bed7553578ac29000c70bee931746f9e36e /pci-arbiter | |
parent | b160d6f3b3cdcd6a293c33cd89dcc46ab54c3264 (diff) | |
download | hurd-ec057117c42c18772b207851b4b13d8d383685e3.tar.gz hurd-ec057117c42c18772b207851b4b13d8d383685e3.tar.bz2 hurd-ec057117c42c18772b207851b4b13d8d383685e3.zip |
pci-arbiter: Cleanup at shutdown.
* pci-arbiter/startup-ops.c:
* S_startup_dosync: Call pci_system_cleanup().
Diffstat (limited to 'pci-arbiter')
-rw-r--r-- | pci-arbiter/startup-ops.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pci-arbiter/startup-ops.c b/pci-arbiter/startup-ops.c index f3506c42..eb387fd9 100644 --- a/pci-arbiter/startup-ops.c +++ b/pci-arbiter/startup-ops.c @@ -20,6 +20,7 @@ #include <startup_notify_S.h> +#include <pciaccess.h> #include <hurd/netfs.h> #include "startup.h" @@ -34,6 +35,9 @@ S_startup_dosync (mach_port_t handle) if (!inpi) return EOPNOTSUPP; + // Free all libpciaccess resources + pci_system_cleanup (); + ports_port_deref (inpi); return netfs_shutdown (FSYS_GOAWAY_FORCE); |