git: 1bbe0448e47f - stable/13 - AMD-vi: Fix mismatched NULL checking in amdiommu teardown path
Ka Ho Ng
khng at FreeBSD.org
Wed Apr 7 10:56:07 UTC 2021
The branch stable/13 has been updated by khng:
URL: https://cgit.FreeBSD.org/src/commit/?id=1bbe0448e47fd9edeee97060e823331334319038
commit 1bbe0448e47fd9edeee97060e823331334319038
Author: Ka Ho Ng <khng at FreeBSD.org>
AuthorDate: 2021-03-31 19:30:21 +0000
Commit: Ka Ho Ng <khng at FreeBSD.org>
CommitDate: 2021-04-07 10:55:38 +0000
AMD-vi: Fix mismatched NULL checking in amdiommu teardown path
Sponsored by: The FreeBSD Foundation
Approved by: lwhsu (mentor)
MFC with: 74ada297e897
(cherry picked from commit cf76495e0a30043503ef126f0a485e314730a221)
---
sys/amd64/vmm/amd/amdiommu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/amd64/vmm/amd/amdiommu.c b/sys/amd64/vmm/amd/amdiommu.c
index 4ded23dff003..5eed6ce849cc 100644
--- a/sys/amd64/vmm/amd/amdiommu.c
+++ b/sys/amd64/vmm/amd/amdiommu.c
@@ -165,7 +165,7 @@ ivhd_teardown_intr(device_t dev)
sc = device_get_softc(dev);
- if (sc->event_res != NULL) {
+ if (sc->event_tag != NULL) {
bus_teardown_intr(dev, sc->event_res, sc->event_tag);
sc->event_tag = NULL;
}
More information about the dev-commits-src-all
mailing list