Issue #2280 has been updated by Pierre Abbat.
Here's the output of "git show", so that you can get the same version: # git show commit 4f45907333eb0ca7cda1d2633ecdf1010f359919 Author: Sepherosa Ziehau <[email protected]> Date: Tue Jan 17 16:52:36 2012 +0800 msix/pci: Enable MSI-X by default diff --git a/sys/bus/pci/pci.c b/sys/bus/pci/pci.c index d93b6aa..063f169 100644 --- a/sys/bus/pci/pci.c +++ b/sys/bus/pci/pci.c @@ -296,12 +296,10 @@ TUNABLE_INT("hw.pci.enable_msi", &pci_do_msi); SYSCTL_INT(_hw_pci, OID_AUTO, enable_msi, CTLFLAG_RW, &pci_do_msi, 1, "Enable support for MSI interrupts"); -static int pci_do_msix = 0; -#if 0 +static int pci_do_msix = 1; TUNABLE_INT("hw.pci.enable_msix", &pci_do_msix); SYSCTL_INT(_hw_pci, OID_AUTO, enable_msix, CTLFLAG_RW, &pci_do_msix, 1, "Enable support for MSI-X interrupts"); -#endif static int pci_honor_msi_blacklist = 1; TUNABLE_INT("hw.pci.honor_msi_blacklist", &pci_honor_msi_blacklist); ---------------------------------------- Bug #2280: starting X reboots the machine http://bugs.dragonflybsd.org/issues/2280 Author: Pierre Abbat Status: New Priority: Normal Assignee: Category: Target version: I built kernel and world from sources downloaded this morning with Git. I rebooted and, while attempting to start kdm, the box said "F1: DragonFly" and rebooted. I rebooted the previous kernel and X came up fine. I also tried startx on the new kernel without kdm; it still rebooted. -- You have received this notification because you have either subscribed to it, or are involved in it. To change your notification preferences, please click here: http://bugs.dragonflybsd.org/my/account
