Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 Sep 2021 23:03:06 GMT
From:      Alexander Motin <mav@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 75547acf1cd5 - stable/13 - vmd: Rename vmd_bus class to pci
Message-ID:  <202109122303.18CN36Zo093753@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by mav:

URL: https://cgit.FreeBSD.org/src/commit/?id=75547acf1cd5a5d0a495b32c8113f8311f0713bd

commit 75547acf1cd5a5d0a495b32c8113f8311f0713bd
Author:     Neel Chauhan <nc@FreeBSD.org>
AuthorDate: 2021-07-16 02:03:05 +0000
Commit:     Alexander Motin <mav@FreeBSD.org>
CommitDate: 2021-09-12 22:44:12 +0000

    vmd: Rename vmd_bus class to pci
    
    This fixes a kernel panic when probing for vmd_bus on Intel TigerLake on
    14-CURRENT. Apparently, vmd_bus is a type of PCI bus, but was registered
    as a separate device class.
    
    PR:                     256915
    Reviewed by:            imp
    Differential Revision:  https://reviews.freebsd.org/D31071
    
    (cherry picked from commit ad1f608fb2f529baf028384bbe7e8fbbff5cbe23)
---
 sys/dev/vmd/vmd_bus.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/dev/vmd/vmd_bus.c b/sys/dev/vmd/vmd_bus.c
index 5eed6176630f..28ce14c63128 100644
--- a/sys/dev/vmd/vmd_bus.c
+++ b/sys/dev/vmd/vmd_bus.c
@@ -213,8 +213,8 @@ static device_method_t vmd_bus_pci_methods[] = {
 
 static devclass_t vmd_bus_devclass;
 
-DEFINE_CLASS_1(vmd_bus, vmd_bus_pci_driver, vmd_bus_pci_methods,
+DEFINE_CLASS_1(pci, vmd_bus_pci_driver, vmd_bus_pci_methods,
     sizeof(struct pci_softc), pci_driver);
 
-DRIVER_MODULE(vmd_bus, vmd, vmd_bus_pci_driver, vmd_bus_devclass, NULL, NULL);
+DRIVER_MODULE(pci, vmd, vmd_bus_pci_driver, vmd_bus_devclass, NULL, NULL);
 MODULE_VERSION(vmd_bus, 1);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202109122303.18CN36Zo093753>